diff options
author | Jeremy Allison <jra@samba.org> | 2007-10-10 17:56:19 -0700 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2007-10-10 17:56:19 -0700 |
commit | 81a70d4ac5c3143ff036d8f73979da70132e071e (patch) | |
tree | 4cd7f0efbacba61a4f324dd3a9d9a41923e49e94 /source3/lib/replace/system | |
parent | d588123885b8c90f2fea4e0c2e35fee9db5231a6 (diff) | |
download | samba-81a70d4ac5c3143ff036d8f73979da70132e071e.tar.gz samba-81a70d4ac5c3143ff036d8f73979da70132e071e.tar.bz2 samba-81a70d4ac5c3143ff036d8f73979da70132e071e.zip |
Merge from metze of libreplace header changes
(This used to be commit d39ce8e37ed81f4a34a148f975874989d8d187a1)
Diffstat (limited to 'source3/lib/replace/system')
-rw-r--r-- | source3/lib/replace/system/time.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/source3/lib/replace/system/time.h b/source3/lib/replace/system/time.h index 6bbb6b15bb..036812ab8f 100644 --- a/source3/lib/replace/system/time.h +++ b/source3/lib/replace/system/time.h @@ -41,4 +41,14 @@ #include <utime.h> #endif +#ifndef HAVE_MKTIME +/* define is in "replace.h" */ +time_t rep_mktime(struct tm *t); +#endif + +#ifndef HAVE_TIMEGM +/* define is in "replace.h" */ +time_t rep_timegm(struct tm *tm); +#endif + #endif |