14 lines
296 B
Diff
14 lines
296 B
Diff
|
--- dutil.h.orig
|
||
|
+++ dutil.h
|
||
|
@@ -28,6 +28,10 @@
|
||
|
#define __pure __attribute__ ((pure))
|
||
|
#endif
|
||
|
|
||
|
+#ifndef __always_inline
|
||
|
+#define __always_inline inline
|
||
|
+#endif
|
||
|
+
|
||
|
#define roundup(x,y) ((((x) + ((y) - 1)) / (y)) * (y))
|
||
|
|
||
|
static inline __attribute__((const)) bool is_power_of_2(unsigned long n)
|