convert awpmd header include to c++ style

This commit is contained in:
Axel Kohlmeyer
2018-05-08 00:10:20 -04:00
parent f39a8d46d1
commit fff962646f
3 changed files with 5 additions and 10 deletions

View File

@ -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)

View File

@ -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>

View File

@ -84,7 +84,7 @@
# include <iostream>
# include <cmath>
# include <limits>
# include <stdlib.h>
# include <cstdlib>
// some compilers don't define PI!
# ifndef M_PI