Commit ab1cc706 authored by Steven J. Plimpton's avatar Steven J. Plimpton
Browse files

change syntax of standard C include files

parent 2e932025
Loading
Loading
Loading
Loading
+6 −7
Original line number Diff line number Diff line
@@ -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 *);

+4 −3
Original line number Diff line number Diff line
@@ -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;
+1 −1
Original line number Diff line number Diff line
@@ -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"

+1 −1
Original line number Diff line number Diff line
@@ -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"

+1 −1
Original line number Diff line number Diff line
@@ -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"