* Removed svn:executable property from non-executable files
[fw/sdcc] / device / include / time.h
old mode 100755 (executable)
new mode 100644 (file)
index 8cb2daf..c8e85bf
@@ -1,7 +1,11 @@
 #ifndef TIME_H
 #define TIME_H
 
-#if 1
+#ifndef __TIME_UNSIGNED
+#define __TIME_UNSIGNED 1
+#endif
+
+#if __TIME_UNSIGNED
 struct tm
 {
   unsigned char tm_sec;                   /* Seconds.     [0-60]      */
@@ -40,4 +44,4 @@ time_t mktime(struct tm *timeptr);
 char *asctime(struct tm *timeptr);
 char *ctime(time_t *timep);
 
-#endif TIME_H
+#endif /* TIME_H */