aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@linux.intel.com>2014-04-09 16:41:47 -0700
committerH. Peter Anvin <hpa@linux.intel.com>2014-04-09 16:41:47 -0700
commite845d9b10c5699ef5f2f41a117f2211508f3d6bf (patch)
tree61232f1ac743ddaf687afc2e0d57b7791e0896f7
parentaed6821b52456a4c538c9097999adba451e49248 (diff)
downloadklibc-e845d9b10c5699ef5f2f41a117f2211508f3d6bf.tar.gz
[klibc] Remove obsolete enum _IO_file_flags
This enum is not used anywhere. Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
-rw-r--r--usr/klibc/stdio/stdioint.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/usr/klibc/stdio/stdioint.h b/usr/klibc/stdio/stdioint.h
index 526c25a8f71187..724c6570a6fb40 100644
--- a/usr/klibc/stdio/stdioint.h
+++ b/usr/klibc/stdio/stdioint.h
@@ -28,15 +28,6 @@ struct _IO_file_pvt {
#define stdio_pvt(x) container_of(x, struct _IO_file_pvt, pub)
-enum _IO_file_flags {
- _IO_FILE_FLAG_WRITE = 1, /* Buffer has write data */
- _IO_FILE_FLAG_READ = 2, /* Buffer has read data */
- _IO_FILE_FLAG_LINE_BUF = 4, /* Line buffered */
- _IO_FILE_FLAG_UNBUF = 8, /* Unbuffered */
- _IO_FILE_FLAG_EOF = 16,
- _IO_FILE_FLAG_ERR = 32,
-};
-
/* Assign this much extra to the input buffer in case of ungetc() */
#define _IO_UNGET_SLOP 32