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
|
||||
// fraction for erfc(z)
|
||||
|
||||
@ -1,9 +1,9 @@
|
||||
# ifndef LOGEXC_H
|
||||
# define LOGEXC_H
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdarg.h>
|
||||
#include <cstdio>
|
||||
#include <cstdlib>
|
||||
#include <cstdarg>
|
||||
#include <stdexcept>
|
||||
#include <string>
|
||||
|
||||
|
||||
@ -84,7 +84,7 @@
|
||||
# include <iostream>
|
||||
# include <cmath>
|
||||
# include <limits>
|
||||
# include <stdlib.h>
|
||||
# include <cstdlib>
|
||||
|
||||
// some compilers don't define PI!
|
||||
# ifndef M_PI
|
||||
|
||||
Reference in New Issue
Block a user