mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-07-09 09:30:52 +00:00
[lib] Fix typo in cpp conditional for malloc.h include
2006-06-28 Paul Jakma <paul.jakma@sun.com> * memory.c: Fix typo in cpp conditional around malloc.h, from comment in bug #269.
This commit is contained in:
parent
7694787c19
commit
74176d220b
@ -1,3 +1,8 @@
|
|||||||
|
2006-06-28 Paul Jakma <paul.jakma@sun.com>
|
||||||
|
|
||||||
|
* memory.c: Fix typo in cpp conditional around malloc.h, from
|
||||||
|
comment in bug #269.
|
||||||
|
|
||||||
2006-06-27 Paul Jakma <paul.jakma@sun.com>
|
2006-06-27 Paul Jakma <paul.jakma@sun.com>
|
||||||
|
|
||||||
* route_types.awk: Remove setting the 'bare' numeric route type
|
* route_types.awk: Remove setting the 'bare' numeric route type
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
|
|
||||||
#include <zebra.h>
|
#include <zebra.h>
|
||||||
/* malloc.h is generally obsolete, however GNU Libc mallinfo wants it. */
|
/* malloc.h is generally obsolete, however GNU Libc mallinfo wants it. */
|
||||||
#if defined(HAVE_STDLIB_H) || (defined(GNU_LINUX) && defined(HAVE_MALLINFO))
|
#if !defined(HAVE_STDLIB_H) || (defined(GNU_LINUX) && defined(HAVE_MALLINFO))
|
||||||
#include <malloc.h>
|
#include <malloc.h>
|
||||||
#endif /* !HAVE_STDLIB_H || HAVE_MALLINFO */
|
#endif /* !HAVE_STDLIB_H || HAVE_MALLINFO */
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user