From 41a5b871a091d4047fb7fefab7b4f36f6f2c1c46 Mon Sep 17 00:00:00 2001 From: John Baldwin Date: Wed, 7 May 2008 15:12:45 +0000 Subject: [PATCH] Tag FILE's _bf as being part of the public ABI as well due to the in-tree sort(1) referencing it. --- include/stdio.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/stdio.h b/include/stdio.h index c2c32eb26848..674a5c2f969d 100644 --- a/include/stdio.h +++ b/include/stdio.h @@ -106,7 +106,7 @@ typedef struct __sFILE { int _w; /* (*) write space left for putc() */ short _flags; /* (*) flags, below; this FILE is free if 0 */ short _file; /* (*) fileno, if Unix descriptor, else -1 */ - struct __sbuf _bf; /* the buffer (at least 1 byte, if !NULL) */ + struct __sbuf _bf; /* (*) the buffer (at least 1 byte, if !NULL) */ int _lbfsize; /* (*) 0 or -_bf._size, for inline putc */ /* operations */