3f049a4c29
an uninitialised pointer (and crashing). Fixes: #54
10 lines
134 B
C
10 lines
134 B
C
#ifndef LIB_H
|
|
#define LIB_H
|
|
|
|
extern void error(int index);
|
|
extern char* salloc(unsigned length);
|
|
extern void sfree(char* c);
|
|
|
|
#endif
|
|
|