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 *);