~ubuntu-branches/debian/sid/ntp/sid

« back to all changes in this revision

Viewing changes to ports/winnt/include/config.h

  • Committer: Package Import Robot
  • Author(s): Peter Eisentraut
  • Date: 2012-02-27 13:55:56 UTC
  • mfrom: (1.2.12)
  • Revision ID: package-import@ubuntu.com-20120227135556-dkx4mkod5trl5bgt
Tags: 1:4.2.6.p5+dfsg-1
* New upstream release (closes: #644673)
* Updated instructions on generating autotools.patch
* Updated standards version

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
#include <malloc.h>
36
36
#include <crtdbg.h>
37
37
/* #define MALLOC_LINT */       /* defers free() */
 
38
# define EREALLOC_IMPL(ptr, newsz, filenm, loc) \
 
39
         _realloc_dbg(ptr, newsz, _NORMAL_BLOCK, filenm, loc)
38
40
#endif
39
41
 
40
42
/*
272
274
#define isatty          _isatty
273
275
#define mktemp          _mktemp
274
276
#define getpid          _getpid
 
277
#define timegm          _mkgmtime
275
278
 
276
279
typedef int pid_t;              /* PID is an int */
277
280
typedef int ssize_t;            /* ssize is an int */
345
348
# define HAVE_STDARG_H
346
349
# define HAVE_NO_NICE
347
350
# define HAVE_MKTIME
 
351
# define HAVE_TIMEGM            1       /* actually _mkgmtime */
348
352
# define HAVE_STRUCT_TIMESPEC
349
353
# define TIME_WITH_SYS_TIME
350
354
# define HAVE_IO_COMPLETION_PORT
394
398
/* Directory separator, usually / or \ */
395
399
#define DIR_SEP '\\'
396
400
 
 
401
#define POSIX_SHELL     "/bin/sh"       /* libopts/makeshell.c */
397
402
 
398
403
#define ULONG_CONST(a) a ## UL
399
404