mirror of https://github.com/lammps/lammps.git
change syntax of standard C include files
This commit is contained in:
parent
2e93202519
commit
ab1cc706cc
|
@ -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 *);
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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"
|
||||
|
||||
|
|
|
@ -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"
|
||||
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue