summaryrefslogtreecommitdiff
path: root/minilib/arena.h
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2018-06-16 12:34:55 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2018-06-16 12:34:55 +0200
commitab9f793cd6d03baf97ca62afa7c42052cafa5ea4 (patch)
treee888bb259c53cb9e00f166d1d5cc023df753daba /minilib/arena.h
parent8f5b4a6408d9bc5ea372d9d8d2dcc19834068612 (diff)
downloadcompilertests-ab9f793cd6d03baf97ca62afa7c42052cafa5ea4.tar.gz
compilertests-ab9f793cd6d03baf97ca62afa7c42052cafa5ea4.tar.bz2
no extern for function prototypes in header files (no clue, why I always do that :-) )
added itoa from abaos to minilib
Diffstat (limited to 'minilib/arena.h')
-rw-r--r--minilib/arena.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/minilib/arena.h b/minilib/arena.h
index 3f486e4..d781981 100644
--- a/minilib/arena.h
+++ b/minilib/arena.h
@@ -9,5 +9,5 @@ enum {
ARENA_SIZE = 65535
};
-extern void *allocate( int size );
-extern void deallocate( void **p );
+void *allocate( int size );
+void deallocate( void **p );