mirror of
https://bitbucket.org/cosmicvoids/vide_public.git
synced 2025-07-04 15:21:11 +00:00
Use more of the new type 'pid_t' to specify indexes that needs to handle particle indexes/ids
This commit is contained in:
parent
17546f2a1e
commit
61b016c72f
1 changed files with 3 additions and 2 deletions
|
@ -12,7 +12,7 @@ int posread(char *posfile, float ***p, float fact);
|
|||
|
||||
int main(int argc, char *argv[]) {
|
||||
int exitcode;
|
||||
int i, j, np;
|
||||
pid_t i, j, np;
|
||||
float **r;
|
||||
coordT rtemp[3], *parts;
|
||||
coordT deladjs[3*MAXVERVER], points[3*MAXVERVER];
|
||||
|
@ -26,7 +26,8 @@ int main(int argc, char *argv[]) {
|
|||
|
||||
int isitinbuf;
|
||||
char isitinmain, d;
|
||||
int numdiv, nvp, nvpall, nvpbuf;
|
||||
int numdiv;
|
||||
pid_t nvp, nvpall, nvpbuf;
|
||||
float width, width2, totwidth, totwidth2, bf, s, g;
|
||||
float border, boxsize;
|
||||
float c[3];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue