First small part of lib cleanup. Mainly "constification" of arguments and
adding FIXME's.
diff --git a/lib/memory.h b/lib/memory.h
index 40081fe..c2d595a 100644
--- a/lib/memory.h
+++ b/lib/memory.h
@@ -236,7 +236,7 @@
void *zcalloc (int type, size_t size);
void *zrealloc (int type, void *ptr, size_t size);
void zfree (int type, void *ptr);
-char *zstrdup (int type, char *str);
+char *zstrdup (int type, const char *str);
void *mtype_zmalloc (const char *file,
int line,
@@ -263,7 +263,7 @@
char *mtype_zstrdup (const char *file,
int line,
int type,
- char *str);
+ const char *str);
void memory_init ();
#endif /* _ZEBRA_MEMORY_H */