]> git.ipfire.org Git - thirdparty/ldns.git/commitdiff
now then
authorMiek Gieben <miekg@NLnetLabs.nl>
Thu, 9 Dec 2004 12:35:38 +0000 (12:35 +0000)
committerMiek Gieben <miekg@NLnetLabs.nl>
Thu, 9 Dec 2004 12:35:38 +0000 (12:35 +0000)
common.h.in [new file with mode: 0644]

diff --git a/common.h.in b/common.h.in
new file mode 100644 (file)
index 0000000..89a9aaf
--- /dev/null
@@ -0,0 +1,28 @@
+/* 
+ * common.h
+ * local header file includes
+ * .in file for autoconf
+ *
+ * (c) NLnet Labs, 2004
+ *
+ * See the file LICENSE for the license
+ *
+ */
+
+#undef HAVE_GETOPT_H
+#undef HAVE_STDINT_H
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <unistd.h>
+#include <assert.h>
+
+/* gnu long options */
+#ifdef HAVE_GETOPT_H  
+#include <getopt.h>   
+#endif /*HAVE_GETOPT_H*/
+
+#ifdef HAVE_STDINT_H
+#include <stdint.h>
+#endif