aboutsummaryrefslogtreecommitdiffstats
path: root/protos.h
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2012-11-22 16:11:22 +0200
committerArnold D. Robbins <arnold@skeeve.com>2012-11-22 16:11:22 +0200
commit86024b7f014c286daa68c3a0a223ce51f6e13dfa (patch)
treed91f270960dc6400b3b84cade8511d747034c92a /protos.h
parent391c19511eda50484a80827694f4555127cca1c8 (diff)
downloadegawk-86024b7f014c286daa68c3a0a223ce51f6e13dfa.tar.gz
egawk-86024b7f014c286daa68c3a0a223ce51f6e13dfa.tar.bz2
egawk-86024b7f014c286daa68c3a0a223ce51f6e13dfa.zip
Clean up of awk.h.
Diffstat (limited to 'protos.h')
-rw-r--r--protos.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/protos.h b/protos.h
index 0afe4bbc..7bef8b84 100644
--- a/protos.h
+++ b/protos.h
@@ -26,9 +26,9 @@
#ifndef STDC_HEADERS
#define aptr_t void * /* arbitrary pointer type */
-extern aptr_t malloc(MALLOC_ARG_T);
-extern aptr_t realloc(aptr_t, MALLOC_ARG_T);
-extern aptr_t calloc(MALLOC_ARG_T, MALLOC_ARG_T);
+extern aptr_t malloc(size_t);
+extern aptr_t realloc(aptr_t, size_t);
+extern aptr_t calloc(size_t, size_t);
extern void free(aptr_t);
extern char *getenv(const char *);