home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / g / gs252src.zip / GS252 / TIME_.H < prev    next >
C/C++ Source or Header  |  1992-09-17  |  2KB  |  50 lines

  1. /* Copyright (C) 1991, 1992 Aladdin Enterprises.  All rights reserved.
  2.    Distributed by Free Software Foundation, Inc.
  3.  
  4. This file is part of Ghostscript.
  5.  
  6. Ghostscript is distributed in the hope that it will be useful, but
  7. WITHOUT ANY WARRANTY.  No author or distributor accepts responsibility
  8. to anyone for the consequences of using it or for whether it serves any
  9. particular purpose or works at all, unless he says so in writing.  Refer
  10. to the Ghostscript General Public License for full details.
  11.  
  12. Everyone is granted permission to copy, modify and redistribute
  13. Ghostscript, but only under the conditions described in the Ghostscript
  14. General Public License.  A copy of this license is supposed to have been
  15. given to you along with Ghostscript so you can know your rights and
  16. responsibilities.  It should be in a file named COPYING.  Among other
  17. things, the copyright notice and this notice must be preserved on all
  18. copies.  */
  19.  
  20. /* time_.h */
  21. /* Generic substitute for Unix sys/time.h */
  22.  
  23. /* We must include std.h before any file that includes sys/types.h. */
  24. #include "std.h"
  25.  
  26. /* Some System V environments don't include sys/time.h. */
  27. /* We detect this in the makefile rules for gp_sysv.c and gp_unix.c, */
  28. /* and compile with the NOSYSTIME macro defined.  What a kludge! */
  29. #ifdef NOSYSTIME
  30. struct timeval {
  31.     long tv_sec, tv_usec;
  32. };
  33. struct timezone {
  34.     int tz_minuteswest, tz_dsttime;
  35. };
  36. #else
  37. #  include <sys/time.h>
  38. #endif
  39.  
  40. #if defined(_IBMR2) || defined(SYSV) || defined(SVR4)        /* IBM RS/6000, AIX 3.n, System V.4 */
  41. #  include <time.h>
  42. #endif
  43.  
  44. #if defined(ultrix) && defined(mips)
  45. /* Apparently some versions of Ultrix for the DECstation include */
  46. /* time_t in sys/time.h, and some don't.  If you get errors */
  47. /* compiling gp_unix.c, uncomment the next line. */
  48. /*    typedef    int    time_t;    */
  49. #endif
  50.