replace C-style include files with their C++ equivalents

This commit is contained in:
Axel Kohlmeyer
2018-04-27 17:41:04 -04:00
parent d5ec76290b
commit e4071d7f46
1309 changed files with 3075 additions and 3098 deletions

View File

@ -12,8 +12,8 @@
------------------------------------------------------------------------- */
#include <mpi.h>
#include <string.h>
#include <stdlib.h>
#include <cstring>
#include <cstdlib>
#include "timer.h"
#include "comm.h"
#include "error.h"
@ -22,13 +22,13 @@
#ifdef _WIN32
#include <windows.h>
#include <stdint.h>
#include <cstdint>
#else
#include <sys/time.h>
#include <sys/resource.h>
#endif
#include <time.h>
#include <ctime>
using namespace LAMMPS_NS;