summaryrefslogtreecommitdiff
path: root/config_h.SH
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2000-11-16 15:46:05 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2000-11-16 15:46:05 +0000
commit1ceb1f31701de9ce4d0cc0a9752edc91e104c2c2 (patch)
tree3f41ea20c03accc2c97bfb8338c7219352b71578 /config_h.SH
parent76338abd5428cccbe945b5e160872673d65c18db (diff)
downloadperl-1ceb1f31701de9ce4d0cc0a9752edc91e104c2c2.tar.gz
Add HAS_SBRK_PROTO.
p4raw-id: //depot/perl@7710
Diffstat (limited to 'config_h.SH')
-rw-r--r--config_h.SH9
1 files changed, 9 insertions, 0 deletions
diff --git a/config_h.SH b/config_h.SH
index e7c668ea44..f912151186 100644
--- a/config_h.SH
+++ b/config_h.SH
@@ -3231,5 +3231,14 @@ sed <<!GROK!THIS! >$CONFIG_H -e 's!^#undef\(.*/\)\*!/\*#define\1 \*!' -e 's!^#un
*/
#$d_fsync HAS_FSYNC /**/
+/* HAS_SBRK_PROTO:
+ * This symbol, if defined, indicates that the system provides
+ * a prototype for the sbrk() function. Otherwise, it is up
+ * to the program to supply one. Good guesses are
+ * extern void* sbrk _((int));
+ * extern void* sbrk _((size_t));
+ */
+#$d_sbrkproto HAS_SBRK_PROTO /**/
+
#endif
!GROK!THIS!