Fri Jan 22 22:11:28 2016 UTC ()
- Has __BEGIN_DECLS so needs sys/cdefs.h;
- Needs stddef.h and stdint.h to be compilable on its own


(dholland)
diff -r1.1 -r1.2 src/lib/libdm/dm.h

cvs diff -r1.1 -r1.2 src/lib/libdm/dm.h (expand / switch to context diff)
--- src/lib/libdm/dm.h 2011/02/08 03:20:15 1.1
+++ src/lib/libdm/dm.h 2016/01/22 22:11:28 1.2
@@ -31,6 +31,10 @@
 #ifndef _LIB_DM_H_
 #define _LIB_DM_H_
 
+#include <sys/cdefs.h>
+#include <stddef.h>
+#include <stdint.h>
+
 __BEGIN_DECLS
 
 #define DM_DEVICE_PATH "/dev/mapper/control"