git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@5504 f3b2605a-c512-4ea7-a41b-209d697bcdaa

This commit is contained in:
sjplimp
2011-01-07 21:42:19 +00:00
parent beabb5e05a
commit 140cdf9485
52 changed files with 417 additions and 220 deletions

View File

@ -58,10 +58,10 @@ void DumpXYZ::init_style()
/* ---------------------------------------------------------------------- */
void DumpXYZ::write_header(int n)
void DumpXYZ::write_header(bigint n)
{
if (me == 0) {
fprintf(fp,"%d\n",n);
fprintf(fp,BIGINT_FORMAT_NL,n);
fprintf(fp,"Atoms\n");
}
}