summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkarl <karl>2006-05-25 22:24:49 +0000
committerkarl <karl>2006-05-25 22:24:49 +0000
commitc4f991cfec437b848a6fc87dbd5b2c6c41de9ce3 (patch)
treeea6aa7b02ea8a863c55fa5bdbbdc9ebfeb52feb5
parent5b1ba96cdf09ef7e3fe62a1c24d28da429bd6c4e (diff)
downloadfontutils-c4f991cfec437b848a6fc87dbd5b2c6c41de9ce3.tar.gz
new
-rw-r--r--include/c-time.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/include/c-time.h b/include/c-time.h
new file mode 100644
index 0000000..93363bd
--- /dev/null
+++ b/include/c-time.h
@@ -0,0 +1,35 @@
+/* c-limits.h: include the system parameter file.
+
+Copyright (C) 2006 Free Software Foundation, Inc.
+
+This program is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 2, or (at your option)
+any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program; if not, write to the Free Software
+Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
+
+#ifndef C_TIME_H
+#define C_TIME_H
+
+#ifdef HAVE_TIME_H
+# include <time.h>
+# ifdef TIME_WITH_SYS_TIME
+# ifdef HAVE_SYS_TIME_H
+# include <sys/time.h>
+# endif
+# endif
+#else
+# ifdef HAVE_SYS_TIME_H
+# include <sys/time.h>
+# endif
+#endif
+
+#endif /* not C_TIME_H */