diff options
Diffstat (limited to 'sysdeps/unix/sysv/linux/brk.c')
-rw-r--r-- | sysdeps/unix/sysv/linux/brk.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/brk.c b/sysdeps/unix/sysv/linux/brk.c index a0be43e..d788a68 100644 --- a/sysdeps/unix/sysv/linux/brk.c +++ b/sysdeps/unix/sysv/linux/brk.c @@ -1,5 +1,5 @@ /* Change data segment. Linux generic version. - Copyright (C) 2020-2024 Free Software Foundation, Inc. + Copyright (C) 2020-2025 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -22,7 +22,7 @@ #include <brk_call.h> /* This must be initialized data because commons can't have aliases. */ -void *__curbrk = 0; +void *__curbrk = NULL; #if HAVE_INTERNAL_BRK_ADDR_SYMBOL /* Old braindamage in GCC's crtstuff.c requires this symbol in an attempt |