convert awpmd header include to c++ style
This commit is contained in:
@ -42,11 +42,6 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|||||||
//
|
//
|
||||||
|
|
||||||
|
|
||||||
//#include <math.h>
|
|
||||||
//#include <octave/oct.h>
|
|
||||||
|
|
||||||
//#include "f77-fcn.h"
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// Abramowitz and Stegun: (eqn: 7.1.14) gives this continued
|
// Abramowitz and Stegun: (eqn: 7.1.14) gives this continued
|
||||||
// fraction for erfc(z)
|
// fraction for erfc(z)
|
||||||
|
|||||||
@ -1,9 +1,9 @@
|
|||||||
# ifndef LOGEXC_H
|
# ifndef LOGEXC_H
|
||||||
# define LOGEXC_H
|
# define LOGEXC_H
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <cstdio>
|
||||||
#include <stdlib.h>
|
#include <cstdlib>
|
||||||
#include <stdarg.h>
|
#include <cstdarg>
|
||||||
#include <stdexcept>
|
#include <stdexcept>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
|
|||||||
@ -84,7 +84,7 @@
|
|||||||
# include <iostream>
|
# include <iostream>
|
||||||
# include <cmath>
|
# include <cmath>
|
||||||
# include <limits>
|
# include <limits>
|
||||||
# include <stdlib.h>
|
# include <cstdlib>
|
||||||
|
|
||||||
// some compilers don't define PI!
|
// some compilers don't define PI!
|
||||||
# ifndef M_PI
|
# ifndef M_PI
|
||||||
|
|||||||
Reference in New Issue
Block a user