summaryrefslogtreecommitdiff
path: root/usr.sbin/bootpd/bptypes.h
diff options
context:
space:
mode:
Diffstat (limited to 'usr.sbin/bootpd/bptypes.h')
-rw-r--r--usr.sbin/bootpd/bptypes.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/usr.sbin/bootpd/bptypes.h b/usr.sbin/bootpd/bptypes.h
deleted file mode 100644
index 9fe00a8216c..00000000000
--- a/usr.sbin/bootpd/bptypes.h
+++ /dev/null
@@ -1,25 +0,0 @@
-/* bptypes.h */
-
-#ifndef BPTYPES_H
-#define BPTYPES_H
-
-/*
- * 32 bit integers are different types on various architectures
- * XXX THE CORRECT WAY TO DO THIS IS:
- * XXX (1) convert to _t form for all uses,
- * XXX (2) define the _t's here (or somewhere)
- * XXX if !defined(__BIT_TYPES_DEFINED__)
- */
-
-typedef int32_t int32;
-typedef u_int32_t u_int32;
-
-/*
- * Nice typedefs. . .
- */
-
-typedef int boolean;
-typedef unsigned char byte;
-
-
-#endif /* BPTYPES_H */