diff options
author | Florian Weimer <fweimer@redhat.com> | 2016-05-04 15:25:39 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2016-05-04 15:27:15 +0200 |
commit | 66355680f840f336eb83e7f46a873556a1bdedcc (patch) | |
tree | 41a741100bb54343c4c5dbbca9227d6192231e97 /malloc | |
parent | fd67a9cf7b733da082e4b6a5f25c19ea7921b4cd (diff) | |
download | glibc-66355680f840f336eb83e7f46a873556a1bdedcc.zip glibc-66355680f840f336eb83e7f46a873556a1bdedcc.tar.gz glibc-66355680f840f336eb83e7f46a873556a1bdedcc.tar.bz2 |
malloc: Adjust header file guard in malloc-internal.h
Diffstat (limited to 'malloc')
-rw-r--r-- | malloc/malloc-internal.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/malloc/malloc-internal.h b/malloc/malloc-internal.h index b830d3f..98afd14 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 <http://www.gnu.org/licenses/>. */ -#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 */ |