aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>2002-04-24 16:49:36 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>2002-04-24 16:49:36 +0000
commit9908ed2b1eedfcea984fabfebb48a9a41d02a624 (patch)
tree05364aa5ca56a331f5dfa5fbf936e6eedcd8848a /include
parent7ce72dbaeceb9f8904b2d43418e329344ef5fb18 (diff)
downloadsrc-9908ed2b1eedfcea984fabfebb48a9a41d02a624.tar.gz
src-9908ed2b1eedfcea984fabfebb48a9a41d02a624.zip
Constify _malloc_options.
Notes
Notes: svn path=/head/; revision=95377
Diffstat (limited to 'include')
-rw-r--r--include/stdlib.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/stdlib.h b/include/stdlib.h
index a76f8edb9a78..086cdddc0f10 100644
--- a/include/stdlib.h
+++ b/include/stdlib.h
@@ -124,7 +124,7 @@ int mbtowc(wchar_t *, const char *, size_t);
size_t wcstombs(char *, const wchar_t *, size_t);
#if !defined(_ANSI_SOURCE) && !defined(_POSIX_SOURCE)
-extern char *_malloc_options;
+extern const char *_malloc_options;
extern void (*_malloc_message)(char *p1, char *p2, char *p3, char *p4);
int putenv(const char *);