]> git.ozlabs.org Git - petitboot/blobdiff - lib/talloc/talloc.c
ui/ncurses/boot-editor: Fix (null) when non-device resources are shown
[petitboot] / lib / talloc / talloc.c
index c660870543a83ff4d6dcee74ac516f599bd0709b..dd108938759e2629737ddd20e9880642cd390c30 100644 (file)
   inspired by http://swapped.cc/halloc/
 */
 
-
+#if defined(HAVE_CONFIG_H)
 #include "config.h"
-
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-
+#else
 /* nfsim additions */
 #define HAVE_SYS_TYPES_H
 #define HAVE_UNISTD_H
 #define HAVE_STDARG_H
 #define HAVE_STDINT_H
 #define HAVE_VA_COPY
+#endif
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+
+#if !defined(NDEBUG)
+#include <assert.h>
+#define TALLOC_ABORT(reason) do{ \
+       fprintf(stderr, "%s: name: %s\n", __func__, tc->name); \
+       assert(0 && reason);} while (0)
+#endif
 
 #ifdef HAVE_SYS_TYPES_H
 #include <sys/types.h>