diff options
author | ajs <ajs> | 2004-11-16 14:25:30 +0000 |
---|---|---|
committer | ajs <ajs> | 2004-11-16 14:25:30 +0000 |
commit | e8ee07605d74cb058ea7db0c0e0880cb70c12a56 (patch) | |
tree | 41103b9b7847cb472c248e8c4ce74c7533f4177f /lib/memory.h | |
parent | 242cbbed7426bc35bb18576396b31c133862656a (diff) | |
download | quagga-e8ee07605d74cb058ea7db0c0e0880cb70c12a56.tar.bz2 quagga-e8ee07605d74cb058ea7db0c0e0880cb70c12a56.tar.xz |
2004-11-16 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
* memory.h: Fix prototype for memory_init().
* memory.c: Declare many functions and data structures static instead
of global. Fix prototype for memory_init().
Diffstat (limited to 'lib/memory.h')
-rw-r--r-- | lib/memory.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/memory.h b/lib/memory.h index 1ffda558..3ef0f480 100644 --- a/lib/memory.h +++ b/lib/memory.h @@ -268,6 +268,6 @@ char *mtype_zstrdup (const char *file, int line, int type, const char *str); -void memory_init (); +void memory_init (void); #endif /* _ZEBRA_MEMORY_H */ |