# HG changeset patch # User Jim Meyering # Date 926628285 0 # Node ID 88d19a2f52de9f7c807f4fd3c162313e918d169d # Parent 7608be2dd6042cab3d633e95ad8654d7cc17599f [__GLIBC__ >= 2]: #if-out prototypes. diff --git a/lib/getline.h b/lib/getline.h --- a/lib/getline.h +++ b/lib/getline.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1995, 1997 Free Software Foundation, Inc. +/* Copyright (C) 1995, 1997, 1999 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -27,10 +27,12 @@ # endif # endif +# if __GLIBC__ < 2 int getline PARAMS ((char **_lineptr, size_t *_n, FILE *_stream)); int getdelim PARAMS ((char **_lineptr, size_t *_n, int _delimiter, FILE *_stream)); +# endif #endif /* not GETLINE_H_ */