From c39a32d111e7cccb9ef2063d6723d91ba3755565 Mon Sep 17 00:00:00 2001 From: Sadeep Madurange Date: Sat, 14 Mar 2026 19:45:55 +0800 Subject: Implement status command in C. --- mem.h | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 mem.h (limited to 'mem.h') diff --git a/mem.h b/mem.h deleted file mode 100644 index 546b004..0000000 --- a/mem.h +++ /dev/null @@ -1,10 +0,0 @@ -#ifndef MEM_H -#define MEM_H - -#define MALLOC(s) _xmalloc((s), __FILE__, __LINE__) -#define REALLOC(p, s) _xrealloc((p), (s), __FILE__, __LINE__) - -void *_xmalloc(size_t s, const char *file, int line); -void *_xrealloc(void *ptr, size_t s, const char *file, int line); - -#endif /* MEM_H */ -- cgit v1.2.3