diff options
author | Ken Foskey <waratah@openoffice.org> | 2002-10-07 12:36:01 +0000 |
---|---|---|
committer | Ken Foskey <waratah@openoffice.org> | 2002-10-07 12:36:01 +0000 |
commit | 8b5ad33c20309c904d289cf5284105cf0d2f2225 (patch) | |
tree | 2b00c307f60f984b02950c51881c66af420bd801 /dmake/extern.h | |
parent | d141806e728c5428e8823771b68c7667b5e696d4 (diff) |
dmake: Correct some undefined functions in some modules
Diffstat (limited to 'dmake/extern.h')
-rw-r--r-- | dmake/extern.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/dmake/extern.h b/dmake/extern.h index 0b0a535ada64..c41c143a1aef 100644 --- a/dmake/extern.h +++ b/dmake/extern.h @@ -1,4 +1,4 @@ -/* RCS $Id: extern.h,v 1.4 2002-10-04 13:31:34 waratah Exp $ +/* RCS $Id: extern.h,v 1.5 2002-10-07 13:36:01 waratah Exp $ -- -- SYNOPSIS -- External declarations for dmake functions. @@ -68,6 +68,9 @@ #if HAVE_SYS_STAT_H # include <sys/stat.h> #endif +#if HAVE_UTIME_H +# include <utime.h> +#endif #define PVOID void * |