comparison srogue/save.c @ 192:3de8058dd549

srogue: provide type definitions if needed. If not defined in headers, uid_t and gid_t will be defined as unsigned ints, and pid_t as int.
author John "Elwin" Edwards
date Mon, 03 Aug 2015 21:29:16 -0400
parents 135ec7f15ffe
children 94a0d9dd5ce1
comparison
equal deleted inserted replaced
191:fb25a62680c7 192:3de8058dd549
294 environ = envp; 294 environ = envp;
295 295
296 strcpy(file_name, file); 296 strcpy(file_name, file);
297 setup(); 297 setup();
298 restscr(cw); 298 restscr(cw);
299 md_srandom(getpid()); 299 md_srandom(md_getpid());
300 playit(); 300 playit();
301 } 301 }