summaryrefslogtreecommitdiff
path: root/nuttx/include/time.h
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-10-02 17:53:17 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-10-02 17:53:17 +0000
commit5246751cb564522530b70b4f171dbd3d09a6eb4b (patch)
treee6cdacc9234e2f1d88f5dc4313065908d200edf5 /nuttx/include/time.h
parentf83bf7d4334e20205fc87a6a98814bd6e44137c4 (diff)
downloadpx4-nuttx-5246751cb564522530b70b4f171dbd3d09a6eb4b.tar.gz
px4-nuttx-5246751cb564522530b70b4f171dbd3d09a6eb4b.tar.bz2
px4-nuttx-5246751cb564522530b70b4f171dbd3d09a6eb4b.zip
Add FAT date/time stamp
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4008 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/include/time.h')
-rw-r--r--nuttx/include/time.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/nuttx/include/time.h b/nuttx/include/time.h
index 7a76b7ef2..69b62f4eb 100644
--- a/nuttx/include/time.h
+++ b/nuttx/include/time.h
@@ -2,7 +2,7 @@
* include/time.h
*
* Copyright (C) 2007-2011 Gregory Nutt. All rights reserved.
- * Author: Gregory Nutt <spudmonkey@racsa.co.cr>
+ * Author: Gregory Nutt <gnutt@nuttx.org>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -154,8 +154,8 @@ EXTERN int clock_gettime(clockid_t clockid, struct timespec *tp);
EXTERN int clock_getres(clockid_t clockid, struct timespec *res);
EXTERN time_t mktime(const struct tm *tp);
-EXTERN struct tm *gmtime(const time_t *timer);
-EXTERN struct tm *gmtime_r(const time_t *timer, struct tm *result);
+EXTERN FAR struct tm *gmtime(FAR const time_t *timer);
+EXTERN FAR struct tm *gmtime_r(FAR const time_t *timer, FAR struct tm *result);
EXTERN size_t strftime(char *s, size_t max, const char *format, const struct tm *tm);
EXTERN time_t time(time_t *tloc);