libowfat/tryalloca.c
leitner 83c1186870 fix for NetBSD 3.0 (they broke their sys/types.h)
remove support for ip6.int reverse lookup in DNS routines (the domain is
no longer delegated)
2006-06-23 03:53:16 +00:00

11 lines
116 B
C

#include <stdlib.h>
#ifdef A
#include <alloca.h>
#else
#include <malloc.h>
#endif
main() {
char* c=alloca(23);
}