home · contact · privacy
Replace old with new client, drop redo system needed to build old one.
[plomrogue] / src / common / try_malloc.h
diff --git a/src/common/try_malloc.h b/src/common/try_malloc.h
deleted file mode 100644 (file)
index 14c5169..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-/* src/common/try_malloc.h
- *
- * This file is part of PlomRogue. PlomRogue is licensed under the GPL version 3
- * or any later version. For details on its copyright, license, and warranties,
- * see the file NOTICE in the root directory of the PlomRogue source package.
- *
- * malloc() wrapper.
- */
-
-#ifndef TRY_MALLOC_H
-#define TRY_MALLOC_H
-
-#include <sys/types.h> /* for size_t */
-
-
-
-/* Call malloc("size") from function called "f"; exit_trouble() on error. */
-extern void * try_malloc(size_t size, const char * f);
-
-
-
-#endif