[haiku-commits] BRANCH midar-github.master - src/system/libroot/posix/glibc/stdio-common

  • From: midar-github.master <community@xxxxxxxxxxxx>
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Tue, 20 Nov 2012 00:30:53 +0100 (CET)

added 1 changeset to branch 'refs/remotes/midar-github/master'
old head: 98f3a527189fb49f51ceeb51a3e292db25521a3a
new head: fd6989939bbaa8b86c1f529c10b660b616c17c7c
overview: https://github.com/Midar/haiku/compare/98f3a52...fd69899

----------------------------------------------------------------------------

fd69899: Fix a missing weak symbol.

                                     [ Jonathan Schleifer <js@xxxxxxxxxxx> ]

----------------------------------------------------------------------------

Commit:      fd6989939bbaa8b86c1f529c10b660b616c17c7c
Author:      Jonathan Schleifer <js@xxxxxxxxxxx>
Date:        Mon Nov 19 23:17:01 2012 UTC

----------------------------------------------------------------------------

1 file changed, 3 insertions(+), 1 deletion(-)
src/system/libroot/posix/glibc/stdio-common/getline.c | 4 +++-

----------------------------------------------------------------------------

diff --git a/src/system/libroot/posix/glibc/stdio-common/getline.c 
b/src/system/libroot/posix/glibc/stdio-common/getline.c
index 35ac492..db1d182 100644
--- a/src/system/libroot/posix/glibc/stdio-common/getline.c
+++ b/src/system/libroot/posix/glibc/stdio-common/getline.c
@@ -17,9 +17,11 @@
    02111-1307 USA.  */
 
 #include <stddef.h>
-#include <stdio.h>
+#include "_G_config.h"
 
 ssize_t __getline(char **lineptr, size_t *n, FILE *stream);
+extern ssize_t __getdelim(char **lineptr, size_t *n, int delimiter,
+       FILE *stream);
 
 /** Like getdelim, but always looks for a newline. */
 


Other related posts:

  • » [haiku-commits] BRANCH midar-github.master - src/system/libroot/posix/glibc/stdio-common - midar-github . master