2004-09-06 Paul Jakma <paul@dishone.st>

* test-buffer.c: include memory.h
          (main) call memory_init().
This commit is contained in:
paul 2005-09-06 23:08:01 +00:00
parent 6379b96117
commit dff4f5272f
2 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2004-09-06 Paul Jakma <paul@dishone.st>
* test-buffer.c: include memory.h
(main) call memory_init().
2004-09-05 Paul Jakma <paul@dishone.st>
* heavy-wq.c: (slow_func_del,slow_func_err) make them take

View File

@ -1,4 +1,5 @@
#include <zebra.h>
#include <memory.h>
#include <buffer.h>
struct thread_master *master;
@ -11,6 +12,8 @@ main(int argc, char **argv)
char junk[3];
char c = 'a';
memory_init();
if ((argc != 2) || (sscanf(argv[1], "%d%1s", &n, junk) != 1))
{
fprintf(stderr, "Usage: %s <number of chars to simulate>\n", *argv);