mirror of git://sourceware.org/git/glibc.git
* libio/wstrops.c: Remove dead macro definitions and comments.
* libio/strops.c: Likewise.
This commit is contained in:
parent
fa3ac53fd9
commit
8999373483
|
|
@ -1,5 +1,8 @@
|
||||||
2006-08-13 Ulrich Drepper <drepper@redhat.com>
|
2006-08-13 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* libio/wstrops.c: Remove dead macro definitions and comments.
|
||||||
|
* libio/strops.c: Likewise.
|
||||||
|
|
||||||
[BZ #2764]
|
[BZ #2764]
|
||||||
* login/utmpname.c (__utmpname): Remove unnecessary test.
|
* login/utmpname.c (__utmpname): Remove unnecessary test.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
/* Copyright (C) 1993, 1997-2003, 2004 Free Software Foundation, Inc.
|
/* Copyright (C) 1993, 1997-2003, 2004, 2006 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
The GNU C Library is free software; you can redistribute it and/or
|
The GNU C Library is free software; you can redistribute it and/or
|
||||||
|
|
@ -30,38 +30,6 @@
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <stdio_ext.h>
|
#include <stdio_ext.h>
|
||||||
|
|
||||||
#if 0
|
|
||||||
/* The following definitions are for exposition only.
|
|
||||||
They map the terminology used in the ANSI/ISO C++ draft standard
|
|
||||||
to the implementation. */
|
|
||||||
|
|
||||||
/* allocated: set when a dynamic array object has been allocated, and
|
|
||||||
hence should be freed by the destructor for the strstreambuf object. */
|
|
||||||
#define ALLOCATED(FP) ((FP)->_f._IO_buf_base && DYNAMIC(FP))
|
|
||||||
|
|
||||||
/* constant: set when the array object has const elements,
|
|
||||||
so the output sequence cannot be written. */
|
|
||||||
#define CONSTANT(FP) ((FP)->_f._IO_file_flags & _IO_NO_WRITES)
|
|
||||||
|
|
||||||
/* alsize: the suggested minimum size for a dynamic array object. */
|
|
||||||
#define ALSIZE(FP) ??? /* not stored */
|
|
||||||
|
|
||||||
/* palloc: points to the function to call to allocate a dynamic array object.*/
|
|
||||||
#define PALLOC(FP) \
|
|
||||||
((FP)->_s._allocate_buffer == default_alloc ? 0 : (FP)->_s._allocate_buffer)
|
|
||||||
|
|
||||||
/* pfree: points to the function to call to free a dynamic array object. */
|
|
||||||
#define PFREE(FP) \
|
|
||||||
((FP)->_s._free_buffer == default_free ? 0 : (FP)->_s._free_buffer)
|
|
||||||
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef TODO
|
|
||||||
/* An "unbounded buffer" is when a buffer is supplied, but with no
|
|
||||||
specified length. An example is the buffer argument to sprintf.
|
|
||||||
*/
|
|
||||||
#endif
|
|
||||||
|
|
||||||
void
|
void
|
||||||
_IO_str_init_static_internal (sf, ptr, size, pstart)
|
_IO_str_init_static_internal (sf, ptr, size, pstart)
|
||||||
_IO_strfile *sf;
|
_IO_strfile *sf;
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
/* Copyright (C) 1993,1997-1999,2001-2003,2004 Free Software Foundation, Inc.
|
/* Copyright (C) 1993,1997-1999,2001-2004, 2006 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
The GNU C Library is free software; you can redistribute it and/or
|
The GNU C Library is free software; you can redistribute it and/or
|
||||||
|
|
@ -31,38 +31,6 @@
|
||||||
#include <wchar.h>
|
#include <wchar.h>
|
||||||
#include <stdio_ext.h>
|
#include <stdio_ext.h>
|
||||||
|
|
||||||
#if 0
|
|
||||||
/* The following definitions are for exposition only.
|
|
||||||
They map the terminology used in the ANSI/ISO C++ draft standard
|
|
||||||
to the implementation. */
|
|
||||||
|
|
||||||
/* allocated: set when a dynamic array object has been allocated, and
|
|
||||||
hence should be freed by the destructor for the strstreambuf object. */
|
|
||||||
#define ALLOCATED(FP) ((FP)->_f._IO_buf_base && DYNAMIC(FP))
|
|
||||||
|
|
||||||
/* constant: set when the array object has const elements,
|
|
||||||
so the output sequence cannot be written. */
|
|
||||||
#define CONSTANT(FP) ((FP)->_f._IO_file_flags & _IO_NO_WRITES)
|
|
||||||
|
|
||||||
/* alsize: the suggested minimum size for a dynamic array object. */
|
|
||||||
#define ALSIZE(FP) ??? /* not stored */
|
|
||||||
|
|
||||||
/* palloc: points to the function to call to allocate a dynamic array object.*/
|
|
||||||
#define PALLOC(FP) \
|
|
||||||
((FP)->_s._allocate_buffer == default_alloc ? 0 : (FP)->_s._allocate_buffer)
|
|
||||||
|
|
||||||
/* pfree: points to the function to call to free a dynamic array object. */
|
|
||||||
#define PFREE(FP) \
|
|
||||||
((FP)->_s._free_buffer == default_free ? 0 : (FP)->_s._free_buffer)
|
|
||||||
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef TODO
|
|
||||||
/* An "unbounded buffer" is when a buffer is supplied, but with no
|
|
||||||
specified length. An example is the buffer argument to sprintf.
|
|
||||||
*/
|
|
||||||
#endif
|
|
||||||
|
|
||||||
void
|
void
|
||||||
_IO_wstr_init_static (fp, ptr, size, pstart)
|
_IO_wstr_init_static (fp, ptr, size, pstart)
|
||||||
_IO_FILE *fp;
|
_IO_FILE *fp;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue