diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | sysdeps/mach/gettimeofday.c | 3 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2001-02-10 Mark Kettenis <kettenis@gnu.org> + + * sysdeps/mach/gettimeofday.c: Include <stddef.h>. + 2001-02-10 Andreas Jaeger <aj@suse.de> * wctype/wcfuncs.c (func): Add prototype declarations to avoid diff --git a/sysdeps/mach/gettimeofday.c b/sysdeps/mach/gettimeofday.c index 21e992e..db67d35 100644 --- a/sysdeps/mach/gettimeofday.c +++ b/sysdeps/mach/gettimeofday.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1992, 1995, 1996, 1997 Free Software Foundation, Inc. +/* Copyright (C) 1991,1992,1995,1996,1997,2001 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -17,6 +17,7 @@ Boston, MA 02111-1307, USA. */ #include <errno.h> +#include <stddef.h> #include <sys/time.h> #include <mach.h> |