fix emalloc prototype

This commit is contained in:
rsc 2006-07-23 05:13:56 +00:00
parent 07ef704cab
commit c135352562

View file

@ -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);