use c++ style include files for c-library functions

This commit is contained in:
Axel Kohlmeyer
2018-11-06 22:09:05 -05:00
parent bdf73f7adb
commit df232c1cf6
3 changed files with 5 additions and 5 deletions

View File

@ -16,8 +16,8 @@
Morteza Jalalvand (IASBS) jalalvand.m AT gmail.com
------------------------------------------------------------------------- */
#include "string.h"
#include "math.h"
#include <cstring>
#include <cmath>
#include "fix_meso_move.h"
#include "atom.h"
#include "group.h"

View File

@ -27,7 +27,7 @@
and all codes relevant to that has been removed
------------------------------------------------------------------------- */
#include <math.h>
#include <cmath>
#include "fix_rigid_meso.h"
#include "math_extra.h"
#include "atom.h"

View File

@ -18,8 +18,8 @@
references: Espanol and Revenga, Phys Rev E 67, 026705 (2003)
------------------------------------------------------------------------- */
#include <math.h>
#include <stdlib.h>
#include <cmath>
#include <cstdlib>
#include "pair_sdpd_taitwater_isothermal.h"
#include "atom.h"
#include "force.h"