diff options
author | Rich Felker <dalias@aerifal.cx> | 2011-09-13 21:09:35 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2011-09-13 21:09:35 -0400 |
commit | 13cd969552409e05c941829f2aabb15e2f4d9a1f (patch) | |
tree | 5e104dd27e5f794d1f083d9a8fea516c9009eb39 /include/time.h | |
parent | 5e9deea0039204f3b29edb1ffe0e30325d456f84 (diff) | |
download | musl-13cd969552409e05c941829f2aabb15e2f4d9a1f.tar.gz musl-13cd969552409e05c941829f2aabb15e2f4d9a1f.tar.bz2 musl-13cd969552409e05c941829f2aabb15e2f4d9a1f.tar.xz musl-13cd969552409e05c941829f2aabb15e2f4d9a1f.zip |
fix various errors in function signatures/prototypes found by nsz
Diffstat (limited to 'include/time.h')
-rw-r--r-- | include/time.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/time.h b/include/time.h index 4cec647d..5b1ea91f 100644 --- a/include/time.h +++ b/include/time.h @@ -102,7 +102,7 @@ extern int daylight; extern long timezone; extern char *tzname[2]; extern int getdate_err; -extern struct tm *getdate (const char *); +struct tm *getdate (const char *); #endif |