summaryrefslogtreecommitdiff
path: root/misc/sbrk.c
diff options
context:
space:
mode:
Diffstat (limited to 'misc/sbrk.c')
-rw-r--r--misc/sbrk.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/misc/sbrk.c b/misc/sbrk.c
index 4948dbfce6..e0747ace8d 100644
--- a/misc/sbrk.c
+++ b/misc/sbrk.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-2016 Free Software Foundation, Inc.
+/* Copyright (C) 1991-2018 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
@@ -18,14 +18,12 @@
#include <errno.h>
#include <stdint.h>
#include <unistd.h>
+#include <libc-internal.h>
/* Defined in brk.c. */
extern void *__curbrk;
extern int __brk (void *addr);
-/* Defined in init-first.c. */
-extern int __libc_multiple_libcs attribute_hidden;
-
/* Extend the process's data space by INCREMENT.
If INCREMENT is negative, shrink data space by - INCREMENT.
Return start of new space allocated, or -1 for errors. */