Include string.h for memset().

This commit is contained in:
Robert Watson 2003-06-01 23:03:49 +00:00
parent f1a529f3da
commit 0bbe770d6f
2 changed files with 2 additions and 1 deletions

View File

@ -26,7 +26,7 @@ CFLAGS := -Wall -pipe -g3
LDFLAGS_A := -static
LDFLAGS_P := -pg
LDFLAGS_S :=
LIBS := -lc_r
LIBS := -lthr
# Flags passed to verify. "-v" or "-u" may be useful.
VFLAGS :=

View File

@ -34,6 +34,7 @@
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <limits.h>
#include <pthread.h>