comparison lib/linebuffer.c @ 3618:72422d1e9181

Include unlocked-io.h.
author Jim Meyering <jim@meyering.net>
date Sat, 17 Nov 2001 13:29:42 +0000
parents 807294ed0f4f
children 72b3b19fece2
comparison
equal deleted inserted replaced
3617:c12191976621 3618:72422d1e9181
1 /* linebuffer.c -- read arbitrarily long lines 1 /* linebuffer.c -- read arbitrarily long lines
2 Copyright (C) 1986, 1991, 1998, 1999 Free Software Foundation, Inc. 2 Copyright (C) 1986, 1991, 1998, 1999, 2001 Free Software Foundation, Inc.
3 3
4 This program is free software; you can redistribute it and/or modify 4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by 5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2, or (at your option) 6 the Free Software Foundation; either version 2, or (at your option)
7 any later version. 7 any later version.
22 #endif 22 #endif
23 23
24 #include <stdio.h> 24 #include <stdio.h>
25 #include <sys/types.h> 25 #include <sys/types.h>
26 #include "linebuffer.h" 26 #include "linebuffer.h"
27 #include "unlocked-io.h"
27 28
28 char *xmalloc (); 29 char *xmalloc ();
29 char *xrealloc (); 30 char *xrealloc ();
30 void free (); 31 void free ();
31 32