home *** CD-ROM | disk | FTP | other *** search
- #ifndef __NT_UNIX_H
- #define __NT_UNIX_H
-
- /*
- * Common functions not implemented by MicroSoft.
- *
- * Copyright (C) 1994, NeXT, Inc.
- * All Rights Reserved.
- *
- */
-
-
- struct timeval {
- long tv_sec;
- long tv_usec;
- };
-
- struct timezone {
- int tz_minuteswest;
- int tz_dsttime;
- };
-
- int gettimeofday (struct timeval *tv, struct timezone *tz);
-
- int strcasecmp (char *left, char *right);
-
-
- #endif __NT_UNIX_H
-