First pass at updating nq particles. Compiles. Crashes. Taniwha wanted a look. Flee in terror.

Also has bunches of cleanups, including string.h/strings.h ifdefs, whitespace, and removal of pointless comments.
This commit is contained in:
Ragnvald Maartmann-Moe IV 2001-05-09 05:41:34 +00:00
parent 80814f5437
commit f6374b48ce
56 changed files with 2934 additions and 2989 deletions

View file

@ -30,6 +30,12 @@
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#ifdef HAVE_STRING_H
# include <string.h>
#endif
#ifdef HAVE_STRINGS_H
# include <strings.h>
#endif
#include <stdio.h>
#include <stdlib.h>
@ -40,7 +46,6 @@
#include <fcntl.h>
#include <sys/mman.h>
#include <signal.h>
#include <string.h>
#include <time.h>
#include "QF/sys.h"