tfix emalloc prototype - plan9port - [fork] Plan 9 from user space
(HTM) git clone git://src.adamsgaard.dk/plan9port
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit c13535256234f4a1c195e65e68ad0ed7128c64fb
(DIR) parent 07ef704cab59efd67ddf73a5b16555158279a41b
(HTM) Author: rsc <devnull@localhost>
Date: Sun, 23 Jul 2006 05:13:56 +0000
fix emalloc prototype
Diffstat:
M src/cmd/9pfuse/a.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
---
(DIR) diff --git a/src/cmd/9pfuse/a.h b/src/cmd/9pfuse/a.h
t@@ -42,8 +42,8 @@ void replyfuseerrno(FuseMsg *m, int e);
void replyfuseerrstr(FuseMsg*);
void request9p(Fcall *tx);
-void* emalloc(size_t n);
-void* erealloc(void *p, size_t n);
+void* emalloc(uint n);
+void* erealloc(void *p, uint n);
char* estrdup(char *p);
int errstr2errno(void);