From: Florian Weimer Date: Wed, 4 May 2016 13:25:39 +0000 (+0200) Subject: malloc: Adjust header file guard in malloc-internal.h X-Git-Tag: glibc-2.24~283 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=66355680f840f336eb83e7f46a873556a1bdedcc;p=thirdparty%2Fglibc.git malloc: Adjust header file guard in malloc-internal.h --- diff --git a/ChangeLog b/ChangeLog index 575c17f7a7f..a4501a0cae3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2016-05-04 Florian Weimer + + * malloc/malloc-internal.h: Adjust header file guard. + 2016-05-04 Samuel Thibault * sysdeps/pthread/aio_misc.c (__aio_enqueue_request): Do not write diff --git a/malloc/malloc-internal.h b/malloc/malloc-internal.h index b830d3f58fe..98afd14040b 100644 --- a/malloc/malloc-internal.h +++ b/malloc/malloc-internal.h @@ -16,8 +16,8 @@ License along with the GNU C Library; see the file COPYING.LIB. If not, see . */ -#ifndef _MALLOC_PRIVATE_H -#define _MALLOC_PRIVATE_H +#ifndef _MALLOC_INTERNAL_H +#define _MALLOC_INTERNAL_H /* Called in the parent process before a fork. */ void __malloc_fork_lock_parent (void) internal_function attribute_hidden; @@ -29,4 +29,4 @@ void __malloc_fork_unlock_parent (void) internal_function attribute_hidden; void __malloc_fork_unlock_child (void) internal_function attribute_hidden; -#endif /* _MALLOC_PRIVATE_H */ +#endif /* _MALLOC_INTERNAL_H */