]> git.ozlabs.org Git - petitboot/blobdiff - lib/util/util.h
Merge pull request #11 from open-power/coverity
[petitboot] / lib / util / util.h
index ba5ea4f677776fbc0b9c48c38003c21203033848..39966d0b7b0a2586b7ce8d857871c5379d4ecb31 100644 (file)
@@ -18,6 +18,8 @@
 #ifndef UTIL_H
 #define UTIL_H
 
+#include <stdint.h>
+
 #ifndef container_of
 #define container_of(_ptr, _type, _member) ({ \
        const typeof( ((_type *)0)->_member ) *__mptr = (_ptr); \
@@ -47,5 +49,7 @@
 #define build_assert(x) \
        do { (void)sizeof(char[(x)?1:-1]); } while (0)
 
+void mac_str(uint8_t *mac, unsigned int maclen, char *buf, unsigned int buflen);
+
 #endif /* UTIL_H */