move dhcp client from /subsys/system to /services
[reactos.git] / reactos / services / dhcp / include / stdint.h
diff --git a/reactos/services/dhcp/include/stdint.h b/reactos/services/dhcp/include/stdint.h
new file mode 100644 (file)
index 0000000..988c303
--- /dev/null
@@ -0,0 +1,13 @@
+#ifndef REACTOS_STDINT_H
+#define REACTOS_STDINT_H
+
+typedef signed char int8_t;
+typedef unsigned char u_int8_t;
+typedef short int16_t;
+typedef unsigned short u_int16_t;
+typedef int int32_t;
+typedef unsigned int u_int32_t;
+
+typedef char *caddr_t;
+
+#endif