change syntax of standard C include files

This commit is contained in:
Steven J. Plimpton 2018-07-24 11:55:56 -06:00
parent 2e93202519
commit ab1cc706cc
5 changed files with 13 additions and 13 deletions

View File

@ -11,17 +11,16 @@
// mode = file, zmq
// modearg = filename for file, localhost:5555 for zmq
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include "mc.h"
#include "random_park.h"
#include "cslib.h"
using namespace CSLIB_NS;
#include "mc.h"
#include "random_park.h"
void error(const char *);
CSlib *cs_create(char *, char *);

View File

@ -14,14 +14,15 @@
#include <cstdio>
#include <cstring>
#include "fix_client_md.h"
#include "cslib.h"
#include "atom.h"
#include "comm.h"
#include "domain.h"
#include "memory.h"
#include "error.h"
#include "comm.h"
#include "update.h"
// CSlib interface
#include "cslib.h"
using namespace LAMMPS_NS;
using namespace CSLIB_NS;

View File

@ -11,7 +11,7 @@
See the README file in the top-level LAMMPS directory.
------------------------------------------------------------------------- */
#include <string.h>
#include <cstring.h>
#include "message.h"
#include "error.h"

View File

@ -11,7 +11,7 @@
See the README file in the top-level LAMMPS directory.
------------------------------------------------------------------------- */
#include <string.h>
#include <cstring.h>
#include "server.h"
#include "error.h"

View File

@ -11,7 +11,7 @@
See the README file in the top-level LAMMPS directory.
------------------------------------------------------------------------- */
#include "mpi.h"
#include <mpi.h>
#include <cstring>
#include "server_md.h"
#include "atom.h"