update #include statements for system includes

This commit is contained in:
Axel Kohlmeyer
2016-10-12 00:00:53 -04:00
parent 6b4ab0a390
commit c24bf512f3
2 changed files with 5 additions and 5 deletions

View File

@ -15,9 +15,9 @@
Contributing authors: Dan Bolintineanu (SNL) Contributing authors: Dan Bolintineanu (SNL)
------------------------------------------------------------------------- */ ------------------------------------------------------------------------- */
#include "math.h" #include <math.h>
#include "stdlib.h" #include <stdlib.h>
#include "string.h" #include <string.h>
#include "fix_wall_gran_region.h" #include "fix_wall_gran_region.h"
#include "region.h" #include "region.h"
#include "atom.h" #include "atom.h"

View File

@ -11,8 +11,8 @@
See the README file in the top-level LAMMPS directory. See the README file in the top-level LAMMPS directory.
------------------------------------------------------------------------- */ ------------------------------------------------------------------------- */
#include "stdio.h" #include <stdio.h>
#include "string.h" #include <string.h>
#include "fix_dpd_energy.h" #include "fix_dpd_energy.h"
#include "atom.h" #include "atom.h"
#include "force.h" #include "force.h"