use C++ style include headers for accessing C library functions

This commit is contained in:
Axel Kohlmeyer 2019-03-15 14:25:14 -04:00
parent c26068a57a
commit 28607f156e
No known key found for this signature in database
GPG Key ID: D9B44E93BF0C375A
1 changed files with 4 additions and 4 deletions

View File

@ -16,10 +16,10 @@ Dan Bolintineanu (SNL), Ishan Srivastava (SNL), Jeremy Lechman(SNL)
Leo Silbert (SNL), Gary Grest (SNL)
----------------------------------------------------------------------- */
#include <math.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <cmath>
#include <cstdlib>
#include <cstdio>
#include <cstring>
#include "pair_granular.h"
#include "atom.h"
#include "atom_vec.h"