patch-src_c_wrapper_h 488 B

123456789101112131415161718
  1. $OpenBSD: patch-src_c_wrapper_h,v 1.1 2013/12/08 16:35:18 ian Exp $
  2. --- src/c/wrapper.h.orig Wed Apr 17 01:48:52 2013
  3. +++ src/c/wrapper.h Sat Dec 7 14:45:36 2013
  4. @@ -52,7 +52,12 @@
  5. #define DWORD unsigned long
  6. #endif
  7. -#include <sys/timeb.h>
  8. +struct timeb {
  9. + time_t time; /* seconds since the Epoch */
  10. + unsigned short millitm; /* + milliseconds since the Epoch */
  11. + short timezone; /* minutes west of UTC */
  12. + short dstflag; /* DST == non-zero */
  13. +};
  14. #include "property.h"