struct timeb. * Don't patch away the SDL header subdirectory and then add it back to the include path. * Sync WANTLIB. ok jca@
30 lines
863 B
Plaintext
30 lines
863 B
Plaintext
$OpenBSD: patch-ttinc_h,v 1.2 2013/12/07 22:35:29 naddy Exp $
|
|
--- ttinc.h.orig Sun Aug 10 11:55:00 2003
|
|
+++ ttinc.h Fri Dec 6 21:04:59 2013
|
|
@@ -174,7 +174,6 @@ enum mode {GAME_5PTS, GAME_11PTS, GAME_21PTS};
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <sys/types.h>
|
|
-#include <sys/timeb.h>
|
|
#include <sys/stat.h>
|
|
#include <fcntl.h>
|
|
#include <string.h>
|
|
@@ -216,6 +215,17 @@ typedef int socklen_t; /* mimic Penguin's socklen typ
|
|
#define gettext_noop(String) (String)
|
|
#define _(String) gettext (String)
|
|
#define N_(String) gettext_noop (String)
|
|
+
|
|
+#ifdef WIN32
|
|
+#include <sys/timeb.h>
|
|
+#else
|
|
+struct timeb {
|
|
+ time_t time; /* seconds since the Epoch */
|
|
+ unsigned short millitm; /* + milliseconds since the Epoch */
|
|
+ short timezone; /* minutes west of UTC */
|
|
+ short dstflag; /* DST == non-zero */
|
|
+};
|
|
+#endif
|
|
|
|
#endif /* MKDEP_IGN_SYSINC */
|
|
|