search for: long_long

Displaying 1 result from an estimated 1 matches for "long_long".

1999 Dec 10
0
snprintf from postgresql
...quot;pathnames.h" #endif #include "postgres.h" #include "regex/cdefs.h" #include <stdio.h> #include <stdarg.h> #include <sys/ioctl.h> #include <sys/param.h> /* * We do all internal arithmetic in the widest available integer type, * here called long_long (or ulong_long for unsigned). */ #ifdef HAVE_LONG_LONG_INT_64 typedef long long long_long; typedef unsigned long long ulong_long; #else typedef long long_long; typedef unsigned long ulong_long; #endif /* ** SNPRINTF, VSNPRINT -- counted versions of printf ** ** These versions have been grabbed...