]> granicus.if.org Git - postgresql/blob - src/include/c.h
make sure the $Id tags are converted to $PostgreSQL as well ...
[postgresql] / src / include / c.h
1 /*-------------------------------------------------------------------------
2  *
3  * c.h
4  *        Fundamental C definitions.  This is included by every .c file in
5  *        PostgreSQL (via either postgres.h or postgres_fe.h, as appropriate).
6  *
7  *        Note that the definitions here are not intended to be exposed to clients
8  *        of the frontend interface libraries --- so we don't worry much about
9  *        polluting the namespace with lots of stuff...
10  *
11  *
12  * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
13  * Portions Copyright (c) 1994, Regents of the University of California
14  *
15  * $PostgreSQL: pgsql/src/include/c.h,v 1.157 2003/11/29 22:40:53 pgsql Exp $
16  *
17  *-------------------------------------------------------------------------
18  */
19 /*
20  *----------------------------------------------------------------
21  *       TABLE OF CONTENTS
22  *
23  *              When adding stuff to this file, please try to put stuff
24  *              into the relevant section, or add new sections as appropriate.
25  *
26  *        section       description
27  *        -------       ------------------------------------------------
28  *              0)              pg_config.h and standard system headers
29  *              1)              hacks to cope with non-ANSI C compilers
30  *              2)              bool, true, false, TRUE, FALSE, NULL
31  *              3)              standard system types
32  *              4)              IsValid macros for system types
33  *              5)              offsetof, lengthof, endof, alignment
34  *              6)              widely useful macros
35  *              7)              random stuff
36  *              8)              system-specific hacks
37  *
38  * NOTE: since this file is included by both frontend and backend modules, it's
39  * almost certainly wrong to put an "extern" declaration here.  typedefs and
40  * macros are the kind of thing that might go here.
41  *
42  *----------------------------------------------------------------
43  */
44 #ifndef C_H
45 #define C_H
46
47 /*
48  * We have to include stdlib.h here because it defines many of these macros
49  * on some platforms, and we only want our definitions used if stdlib.h doesn't
50  * have its own.  The same goes for stddef and stdarg if present.
51  */
52
53 #include "pg_config.h"
54 #include "pg_config_manual.h"   /* must be after pg_config.h */
55 #ifndef WIN32
56 #include "pg_config_os.h"               /* must be before any system header files */
57 #endif
58 #include "postgres_ext.h"
59
60 #include <stdio.h>
61 #include <stdlib.h>
62 #include <string.h>
63 #include <stddef.h>
64 #include <stdarg.h>
65 #ifdef HAVE_STRINGS_H
66 #include <strings.h>
67 #endif
68 #include <sys/types.h>
69
70 #include <errno.h>
71 #if defined(__CYGWIN__) || defined(WIN32)
72 #include <fcntl.h>                              /* ensure O_BINARY is available */
73 #endif
74 #ifdef HAVE_SUPPORTDEFS_H
75 #include <SupportDefs.h>
76 #endif
77
78 #if defined(WIN32) && !defined(_MSC_VER) && !defined(__BORLANDC__)
79 /* We have to redefine some system functions after they are included above */
80 #include "pg_config_os.h"
81 #endif
82
83 /* Must be before gettext() games below */
84 #include <locale.h>
85
86 #ifdef ENABLE_NLS
87 #include <libintl.h>
88 #else
89 #define gettext(x) (x)
90 #endif
91 #define gettext_noop(x) (x)
92
93
94 /* ----------------------------------------------------------------
95  *                              Section 1: hacks to cope with non-ANSI C compilers
96  *
97  * type prefixes (const, signed, volatile, inline) are handled in pg_config.h.
98  * ----------------------------------------------------------------
99  */
100
101 /*
102  * CppAsString
103  *              Convert the argument to a string, using the C preprocessor.
104  * CppConcat
105  *              Concatenate two arguments together, using the C preprocessor.
106  *
107  * Note: the standard Autoconf macro AC_C_STRINGIZE actually only checks
108  * whether #identifier works, but if we have that we likely have ## too.
109  */
110 #if defined(HAVE_STRINGIZE)
111
112 #define CppAsString(identifier) #identifier
113 #define CppConcat(x, y)                 x##y
114
115 #else                                                   /* !HAVE_STRINGIZE */
116
117 #define CppAsString(identifier) "identifier"
118
119 /*
120  * CppIdentity -- On Reiser based cpp's this is used to concatenate
121  *              two tokens.  That is
122  *                              CppIdentity(A)B ==> AB
123  *              We renamed it to _private_CppIdentity because it should not
124  *              be referenced outside this file.  On other cpp's it
125  *              produces  A  B.
126  */
127 #define _priv_CppIdentity(x)x
128 #define CppConcat(x, y)                 _priv_CppIdentity(x)y
129 #endif   /* !HAVE_STRINGIZE */
130
131 /*
132  * dummyret is used to set return values in macros that use ?: to make
133  * assignments.  gcc wants these to be void, other compilers like char
134  */
135 #ifdef __GNUC__                                 /* GNU cc */
136 #define dummyret        void
137 #else
138 #define dummyret        char
139 #endif
140
141 #ifndef __GNUC__
142 #define __attribute__(_arg_)
143 #endif
144
145 /* ----------------------------------------------------------------
146  *                              Section 2:      bool, true, false, TRUE, FALSE, NULL
147  * ----------------------------------------------------------------
148  */
149
150 /*
151  * bool
152  *              Boolean value, either true or false.
153  *
154  * XXX for C++ compilers, we assume the compiler has a compatible
155  * built-in definition of bool.
156  */
157
158 /* BeOS defines bool already, but the compiler chokes on the
159  * #ifndef unless we wrap it in this check.
160  */
161 #ifndef __BEOS__
162
163 #ifndef __cplusplus
164
165 #ifndef bool
166 typedef char bool;
167 #endif
168
169 #ifndef true
170 #define true    ((bool) 1)
171 #endif
172
173 #ifndef false
174 #define false   ((bool) 0)
175 #endif
176 #endif   /* not C++ */
177 #endif   /* __BEOS__ */
178
179 typedef bool *BoolPtr;
180
181 #ifndef TRUE
182 #define TRUE    1
183 #endif
184
185 #ifndef FALSE
186 #define FALSE   0
187 #endif
188
189 /*
190  * NULL
191  *              Null pointer.
192  */
193 #ifndef NULL
194 #define NULL    ((void *) 0)
195 #endif
196
197
198 /* ----------------------------------------------------------------
199  *                              Section 3:      standard system types
200  * ----------------------------------------------------------------
201  */
202
203 /*
204  * Pointer
205  *              Variable holding address of any memory resident object.
206  *
207  *              XXX Pointer arithmetic is done with this, so it can't be void *
208  *              under "true" ANSI compilers.
209  */
210 typedef char *Pointer;
211
212 /*
213  * intN
214  *              Signed integer, EXACTLY N BITS IN SIZE,
215  *              used for numerical computations and the
216  *              frontend/backend protocol.
217  */
218 #ifndef HAVE_INT8
219 typedef signed char int8;               /* == 8 bits */
220 typedef signed short int16;             /* == 16 bits */
221 typedef signed int int32;               /* == 32 bits */
222 #endif   /* not HAVE_INT8 */
223
224 /*
225  * uintN
226  *              Unsigned integer, EXACTLY N BITS IN SIZE,
227  *              used for numerical computations and the
228  *              frontend/backend protocol.
229  */
230 /* Also defined in interfaces/odbc/md5.h */
231 #ifndef HAVE_UINT8
232 typedef unsigned char uint8;    /* == 8 bits */
233 typedef unsigned short uint16;  /* == 16 bits */
234 typedef unsigned int uint32;    /* == 32 bits */
235 #endif   /* not HAVE_UINT8 */
236
237 /*
238  * boolN
239  *              Boolean value, AT LEAST N BITS IN SIZE.
240  */
241 typedef uint8 bool8;                    /* >= 8 bits */
242 typedef uint16 bool16;                  /* >= 16 bits */
243 typedef uint32 bool32;                  /* >= 32 bits */
244
245 /*
246  * bitsN
247  *              Unit of bitwise operation, AT LEAST N BITS IN SIZE.
248  */
249 typedef uint8 bits8;                    /* >= 8 bits */
250 typedef uint16 bits16;                  /* >= 16 bits */
251 typedef uint32 bits32;                  /* >= 32 bits */
252
253 /*
254  * wordN
255  *              Unit of storage, AT LEAST N BITS IN SIZE,
256  *              used to fetch/store data.
257  */
258 typedef uint8 word8;                    /* >= 8 bits */
259 typedef uint16 word16;                  /* >= 16 bits */
260 typedef uint32 word32;                  /* >= 32 bits */
261
262 /*
263  * floatN
264  *              Floating point number, AT LEAST N BITS IN SIZE,
265  *              used for numerical computations.
266  *
267  *              Since sizeof(floatN) may be > sizeof(char *), always pass
268  *              floatN by reference.
269  *
270  * XXX: these typedefs are now deprecated in favor of float4 and float8.
271  * They will eventually go away.
272  */
273 typedef float float32data;
274 typedef double float64data;
275 typedef float *float32;
276 typedef double *float64;
277
278 /*
279  * 64-bit integers
280  */
281 #ifdef HAVE_LONG_INT_64
282 /* Plain "long int" fits, use it */
283
284 #ifndef HAVE_INT64
285 typedef long int int64;
286 #endif
287 #ifndef HAVE_UINT64
288 typedef unsigned long int uint64;
289 #endif
290
291 #elif defined(HAVE_LONG_LONG_INT_64)
292 /* We have working support for "long long int", use that */
293
294 #ifndef HAVE_INT64
295 typedef long long int int64;
296 #endif
297 #ifndef HAVE_UINT64
298 typedef unsigned long long int uint64;
299 #endif
300
301 #else                                                   /* not HAVE_LONG_INT_64 and not
302                                                                  * HAVE_LONG_LONG_INT_64 */
303
304 /* Won't actually work, but fall back to long int so that code compiles */
305 #ifndef HAVE_INT64
306 typedef long int int64;
307 #endif
308 #ifndef HAVE_UINT64
309 typedef unsigned long int uint64;
310 #endif
311
312 #define INT64_IS_BUSTED
313 #endif   /* not HAVE_LONG_INT_64 and not
314                                                                  * HAVE_LONG_LONG_INT_64 */
315
316 /* Decide if we need to decorate 64-bit constants */
317 #ifdef HAVE_LL_CONSTANTS
318 #define INT64CONST(x)  ((int64) x##LL)
319 #define UINT64CONST(x) ((uint64) x##LL)
320 #else
321 #define INT64CONST(x)  ((int64) x)
322 #define UINT64CONST(x) ((uint64) x)
323 #endif
324
325
326 /* Select timestamp representation (float8 or int64) */
327 #if defined(USE_INTEGER_DATETIMES) && !defined(INT64_IS_BUSTED)
328 #define HAVE_INT64_TIMESTAMP
329 #endif
330
331 /* Global variable holding time zone information. */
332 #ifndef HAVE_UNDERSCORE_TIMEZONE
333 #define TIMEZONE_GLOBAL timezone
334 #else
335 #define TIMEZONE_GLOBAL _timezone
336 #define tzname _tzname                  /* should be in time.h? */
337 #endif
338
339 /* sig_atomic_t is required by ANSI C, but may be missing on old platforms */
340 #ifndef HAVE_SIG_ATOMIC_T
341 typedef int sig_atomic_t;
342 #endif
343
344 /*
345  * Size
346  *              Size of any memory resident object, as returned by sizeof.
347  */
348 typedef size_t Size;
349
350 /*
351  * Index
352  *              Index into any memory resident array.
353  *
354  * Note:
355  *              Indices are non negative.
356  */
357 typedef unsigned int Index;
358
359 /*
360  * Offset
361  *              Offset into any memory resident array.
362  *
363  * Note:
364  *              This differs from an Index in that an Index is always
365  *              non negative, whereas Offset may be negative.
366  */
367 typedef signed int Offset;
368
369 /*
370  * Common Postgres datatype names (as used in the catalogs)
371  */
372 typedef int16 int2;
373 typedef int32 int4;
374 typedef float float4;
375 typedef double float8;
376
377 /*
378  * Oid, RegProcedure, TransactionId, CommandId, AclId
379  */
380
381 /* typedef Oid is in postgres_ext.h */
382
383 /*
384  * regproc is the type name used in the include/catalog headers, but
385  * RegProcedure is the preferred name in C code.
386  */
387 typedef Oid regproc;
388 typedef regproc RegProcedure;
389
390 typedef uint32 TransactionId;
391
392 typedef uint32 CommandId;
393
394 #define FirstCommandId  ((CommandId) 0)
395
396 typedef int32 AclId;                    /* user and group identifiers */
397
398 /*
399  * Array indexing support
400  */
401 #define MAXDIM 6
402 typedef struct
403 {
404         int                     indx[MAXDIM];
405 } IntArray;
406
407 /* ----------------
408  *              Variable-length datatypes all share the 'struct varlena' header.
409  *
410  * NOTE: for TOASTable types, this is an oversimplification, since the value
411  * may be compressed or moved out-of-line.      However datatype-specific routines
412  * are mostly content to deal with de-TOASTed values only, and of course
413  * client-side routines should never see a TOASTed value.  See postgres.h for
414  * details of the TOASTed form.
415  * ----------------
416  */
417 struct varlena
418 {
419         int32           vl_len;
420         char            vl_dat[1];
421 };
422
423 #define VARHDRSZ                ((int32) sizeof(int32))
424
425 /*
426  * These widely-used datatypes are just a varlena header and the data bytes.
427  * There is no terminating null or anything like that --- the data length is
428  * always VARSIZE(ptr) - VARHDRSZ.
429  */
430 typedef struct varlena bytea;
431 typedef struct varlena text;
432 typedef struct varlena BpChar;  /* blank-padded char, ie SQL char(n) */
433 typedef struct varlena VarChar; /* var-length char, ie SQL varchar(n) */
434
435 /*
436  * Fixed-length array types (these are not varlena's!)
437  */
438
439 typedef int2 int2vector[INDEX_MAX_KEYS];
440 typedef Oid oidvector[INDEX_MAX_KEYS];
441
442 /*
443  * We want NameData to have length NAMEDATALEN and int alignment,
444  * because that's how the data type 'name' is defined in pg_type.
445  * Use a union to make sure the compiler agrees.  Note that NAMEDATALEN
446  * must be a multiple of sizeof(int), else sizeof(NameData) will probably
447  * not come out equal to NAMEDATALEN.
448  */
449 typedef union nameData
450 {
451         char            data[NAMEDATALEN];
452         int                     alignmentDummy;
453 } NameData;
454 typedef NameData *Name;
455
456 #define NameStr(name)   ((name).data)
457
458
459 /* ----------------------------------------------------------------
460  *                              Section 4:      IsValid macros for system types
461  * ----------------------------------------------------------------
462  */
463 /*
464  * BoolIsValid
465  *              True iff bool is valid.
466  */
467 #define BoolIsValid(boolean)    ((boolean) == false || (boolean) == true)
468
469 /*
470  * PointerIsValid
471  *              True iff pointer is valid.
472  */
473 #define PointerIsValid(pointer) ((void*)(pointer) != NULL)
474
475 /*
476  * PointerIsAligned
477  *              True iff pointer is properly aligned to point to the given type.
478  */
479 #define PointerIsAligned(pointer, type) \
480                 (((long)(pointer) % (sizeof (type))) == 0)
481
482 #define OidIsValid(objectId)  ((bool) ((objectId) != InvalidOid))
483
484 #define AclIdIsValid(aclId)  ((bool) ((aclId) != 0))
485
486 #define RegProcedureIsValid(p)  OidIsValid(p)
487
488
489 /* ----------------------------------------------------------------
490  *                              Section 5:      offsetof, lengthof, endof, alignment
491  * ----------------------------------------------------------------
492  */
493 /*
494  * offsetof
495  *              Offset of a structure/union field within that structure/union.
496  *
497  *              XXX This is supposed to be part of stddef.h, but isn't on
498  *              some systems (like SunOS 4).
499  */
500 #ifndef offsetof
501 #define offsetof(type, field)   ((long) &((type *)0)->field)
502 #endif   /* offsetof */
503
504 /*
505  * lengthof
506  *              Number of elements in an array.
507  */
508 #define lengthof(array) (sizeof (array) / sizeof ((array)[0]))
509
510 /*
511  * endof
512  *              Address of the element one past the last in an array.
513  */
514 #define endof(array)    (&array[lengthof(array)])
515
516 /* ----------------
517  * Alignment macros: align a length or address appropriately for a given type.
518  *
519  * There used to be some incredibly crufty platform-dependent hackery here,
520  * but now we rely on the configure script to get the info for us. Much nicer.
521  *
522  * NOTE: TYPEALIGN will not work if ALIGNVAL is not a power of 2.
523  * That case seems extremely unlikely to occur in practice, however.
524  * ----------------
525  */
526
527 #define TYPEALIGN(ALIGNVAL,LEN)  \
528         (((long) (LEN) + (ALIGNVAL-1)) & ~((long) (ALIGNVAL-1)))
529
530 #define SHORTALIGN(LEN)                 TYPEALIGN(ALIGNOF_SHORT, (LEN))
531 #define INTALIGN(LEN)                   TYPEALIGN(ALIGNOF_INT, (LEN))
532 #define LONGALIGN(LEN)                  TYPEALIGN(ALIGNOF_LONG, (LEN))
533 #define DOUBLEALIGN(LEN)                TYPEALIGN(ALIGNOF_DOUBLE, (LEN))
534 #define MAXALIGN(LEN)                   TYPEALIGN(MAXIMUM_ALIGNOF, (LEN))
535 /* MAXALIGN covers only built-in types, not buffers */
536 #define BUFFERALIGN(LEN)                TYPEALIGN(ALIGNOF_BUFFER, (LEN))
537
538
539 /* ----------------------------------------------------------------
540  *                              Section 6:      widely useful macros
541  * ----------------------------------------------------------------
542  */
543 /*
544  * Max
545  *              Return the maximum of two numbers.
546  */
547 #define Max(x, y)               ((x) > (y) ? (x) : (y))
548
549 /*
550  * Min
551  *              Return the minimum of two numbers.
552  */
553 #define Min(x, y)               ((x) < (y) ? (x) : (y))
554
555 /*
556  * Abs
557  *              Return the absolute value of the argument.
558  */
559 #define Abs(x)                  ((x) >= 0 ? (x) : -(x))
560
561 /*
562  * StrNCpy
563  *      Like standard library function strncpy(), except that result string
564  *      is guaranteed to be null-terminated --- that is, at most N-1 bytes
565  *      of the source string will be kept.
566  *      Also, the macro returns no result (too hard to do that without
567  *      evaluating the arguments multiple times, which seems worse).
568  *
569  *      BTW: when you need to copy a non-null-terminated string (like a text
570  *      datum) and add a null, do not do it with StrNCpy(..., len+1).  That
571  *      might seem to work, but it fetches one byte more than there is in the
572  *      text object.  One fine day you'll have a SIGSEGV because there isn't
573  *      another byte before the end of memory.  Don't laugh, we've had real
574  *      live bug reports from real live users over exactly this mistake.
575  *      Do it honestly with "memcpy(dst,src,len); dst[len] = '\0';", instead.
576  */
577 #define StrNCpy(dst,src,len) \
578         do \
579         { \
580                 char * _dst = (dst); \
581                 Size _len = (len); \
582 \
583                 if (_len > 0) \
584                 { \
585                         strncpy(_dst, (src), _len); \
586                         _dst[_len-1] = '\0'; \
587                 } \
588         } while (0)
589
590
591 /* Get a bit mask of the bits set in non-int32 aligned addresses */
592 #define INT_ALIGN_MASK (sizeof(int32) - 1)
593
594 /*
595  * MemSet
596  *      Exactly the same as standard library function memset(), but considerably
597  *      faster for zeroing small word-aligned structures (such as parsetree nodes).
598  *      This has to be a macro because the main point is to avoid function-call
599  *      overhead.       However, we have also found that the loop is faster than
600  *      native libc memset() on some platforms, even those with assembler
601  *      memset() functions.  More research needs to be done, perhaps with
602  *      platform-specific MEMSET_LOOP_LIMIT values or tests in configure.
603  *
604  *      bjm 2002-10-08
605  */
606 #define MemSet(start, val, len) \
607         do \
608         { \
609                 int32 * _start = (int32 *) (start); \
610                 int             _val = (val); \
611                 Size    _len = (len); \
612 \
613                 if ((((long) _start) & INT_ALIGN_MASK) == 0 && \
614                         (_len & INT_ALIGN_MASK) == 0 && \
615                         _val == 0 && \
616                         _len <= MEMSET_LOOP_LIMIT) \
617                 { \
618                         int32 * _stop = (int32 *) ((char *) _start + _len); \
619                         while (_start < _stop) \
620                                 *_start++ = 0; \
621                 } \
622                 else \
623                         memset((char *) _start, _val, _len); \
624         } while (0)
625
626 #define MEMSET_LOOP_LIMIT  1024
627
628 /*
629  * MemSetAligned is the same as MemSet except it omits the test to see if
630  * "start" is word-aligned.  This is okay to use if the caller knows a-priori
631  * that the pointer is suitably aligned (typically, because he just got it
632  * from palloc(), which always delivers a max-aligned pointer).
633  */
634 #define MemSetAligned(start, val, len) \
635         do \
636         { \
637                 int32 * _start = (int32 *) (start); \
638                 int             _val = (val); \
639                 Size    _len = (len); \
640 \
641                 if ((_len & INT_ALIGN_MASK) == 0 && \
642                         _val == 0 && \
643                         _len <= MEMSET_LOOP_LIMIT) \
644                 { \
645                         int32 * _stop = (int32 *) ((char *) _start + _len); \
646                         while (_start < _stop) \
647                                 *_start++ = 0; \
648                 } \
649                 else \
650                         memset((char *) _start, _val, _len); \
651         } while (0)
652
653
654 /*
655  * MemSetTest/MemSetLoop are a variant version that allow all the tests in
656  * MemSet to be done at compile time in cases where "val" and "len" are
657  * constants *and* we know the "start" pointer must be word-aligned.
658  * If MemSetTest succeeds, then it is okay to use MemSetLoop, otherwise use
659  * MemSetAligned.  Beware of multiple evaluations of the arguments when using
660  * this approach.
661  */
662 #define MemSetTest(val, len) \
663         ( ((len) & INT_ALIGN_MASK) == 0 && \
664         (len) <= MEMSET_LOOP_LIMIT && \
665         (val) == 0 )
666
667 #define MemSetLoop(start, val, len) \
668         do \
669         { \
670                 int32 * _start = (int32 *) (start); \
671                 int32 * _stop = (int32 *) ((char *) _start + (Size) (len)); \
672         \
673                 while (_start < _stop) \
674                         *_start++ = 0; \
675         } while (0)
676
677
678 /* ----------------------------------------------------------------
679  *                              Section 7:      random stuff
680  * ----------------------------------------------------------------
681  */
682
683 /* msb for char */
684 #define CSIGNBIT (0x80)
685
686 #define STATUS_OK                               (0)
687 #define STATUS_ERROR                    (-1)
688 #define STATUS_EOF                              (-2)
689 #define STATUS_FOUND                    (1)
690
691
692 /* ----------------------------------------------------------------
693  *                              Section 8: system-specific hacks
694  *
695  *              This should be limited to things that absolutely have to be
696  *              included in every source file.  The port-specific header file
697  *              is usually a better place for this sort of thing.
698  * ----------------------------------------------------------------
699  */
700
701 #if defined(__CYGWIN__) || defined(WIN32)
702 #define PG_BINARY       O_BINARY
703 #define PG_BINARY_R "rb"
704 #define PG_BINARY_W "wb"
705 #else
706 #define PG_BINARY       0
707 #define PG_BINARY_R "r"
708 #define PG_BINARY_W "w"
709 #endif
710
711 #if !defined(WIN32) && !defined(__BEOS__)
712 #define FCNTL_NONBLOCK(sock)    fcntl(sock, F_SETFL, O_NONBLOCK)
713 #else
714 extern long ioctlsocket_ret;
715
716 /* Returns non-0 on failure, while fcntl() returns -1 on failure */
717 #ifdef WIN32
718 #define FCNTL_NONBLOCK(sock)    ((ioctlsocket(sock, FIONBIO, &ioctlsocket_ret) == 0) ? 0 : -1)
719 #endif
720 #ifdef __BEOS__
721 #define FCNTL_NONBLOCK(sock)    ((ioctl(sock, FIONBIO, &ioctlsocket_ret) == 0) ? 0 : -1)
722 #endif
723 #endif
724
725 #if defined(sun) && defined(__sparc__) && !defined(__SVR4)
726 #include <unistd.h>
727 #endif
728
729 /* These are for things that are one way on Unix and another on NT */
730 #define NULL_DEV                "/dev/null"
731
732 /*
733  * Provide prototypes for routines not present in a particular machine's
734  * standard C library.
735  */
736
737 #if !HAVE_DECL_SNPRINTF
738 extern int
739 snprintf(char *str, size_t count, const char *fmt,...)
740 /* This extension allows gcc to check the format string */
741 __attribute__((format(printf, 3, 4)));
742 #endif
743
744 #if !HAVE_DECL_VSNPRINTF
745 extern int      vsnprintf(char *str, size_t count, const char *fmt, va_list args);
746 #endif
747
748 #if !defined(HAVE_MEMMOVE) && !defined(memmove)
749 #define memmove(d, s, c)                bcopy(s, d, c)
750 #endif
751
752 #ifndef DLLIMPORT
753 #define DLLIMPORT                               /* no special DLL markers on most ports */
754 #endif
755
756 /*
757  * The following is used as the arg list for signal handlers.  Any ports
758  * that take something other than an int argument should override this in
759  * their pg_config_os.h file.  Note that variable names are required
760  * because it is used in both the prototypes as well as the definitions.
761  * Note also the long name.  We expect that this won't collide with
762  * other names causing compiler warnings.
763  */
764
765 #ifndef SIGNAL_ARGS
766 #define SIGNAL_ARGS  int postgres_signal_arg
767 #endif
768
769 /*
770  * When there is no sigsetjmp, its functionality is provided by plain
771  * setjmp. Incidentally, nothing provides setjmp's functionality in
772  * that case.
773  */
774 #ifndef HAVE_SIGSETJMP
775 #define sigjmp_buf jmp_buf
776 #define sigsetjmp(x,y) setjmp(x)
777 #define siglongjmp longjmp
778 #endif
779
780 #if defined(HAVE_FDATASYNC) && !HAVE_DECL_FDATASYNC
781 extern int      fdatasync(int fildes);
782 #endif
783
784 /* If strtoq() exists, rename it to the more standard strtoll() */
785 #if defined(HAVE_LONG_LONG_INT_64) && !defined(HAVE_STRTOLL) && defined(HAVE_STRTOQ)
786 #define strtoll strtoq
787 #define HAVE_STRTOLL 1
788 #endif
789
790 /* If strtouq() exists, rename it to the more standard strtoull() */
791 #if defined(HAVE_LONG_LONG_INT_64) && !defined(HAVE_STRTOULL) && defined(HAVE_STRTOUQ)
792 #define strtoull strtouq
793 #define HAVE_STRTOULL 1
794 #endif
795
796 /* /port compatibility functions */
797 #include "port.h"
798
799 #endif   /* C_H */