Jens Rohler: Include guard
[infodrom/dtaus] / bigint.h
index 6399513..7d10b9a 100644 (file)
--- a/bigint.h
+++ b/bigint.h
@@ -23,6 +23,9 @@
  * 4294967295 is max (unsigned long int)
  */
 
+#ifndef _BIGINT_H_
+#define _BIGINT_H_
+
 #define BIGINT_LEN     2
 #define BIGINT_MAX     1000000000
 #define BIGINT_PREC    9
@@ -49,3 +52,4 @@ void bigint_sprintf (char *res, char *format, bigint a);
 */
 int bigint_cmp(bigint a, bigint b);
 
+#endif /* _BIGINT_H_ */