summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/libstdio/ungetc.c
diff options
context:
space:
mode:
authorMystery Man <unknown@mandriva.org>2001-05-14 13:50:02 +0000
committerMystery Man <unknown@mandriva.org>2001-05-14 13:50:02 +0000
commit307b99f54bd4ff16de91c4d191cf1cf5bd4e2669 (patch)
treeafb96786d841a84044ff729a29af859c62fdc588 /mdk-stage1/dietlibc/libstdio/ungetc.c
parent3e3a822d182adc09a3969f4f37489c07755c52f8 (diff)
downloaddrakx-backup-do-not-use-307b99f54bd4ff16de91c4d191cf1cf5bd4e2669.tar
drakx-backup-do-not-use-307b99f54bd4ff16de91c4d191cf1cf5bd4e2669.tar.gz
drakx-backup-do-not-use-307b99f54bd4ff16de91c4d191cf1cf5bd4e2669.tar.bz2
drakx-backup-do-not-use-307b99f54bd4ff16de91c4d191cf1cf5bd4e2669.tar.xz
drakx-backup-do-not-use-307b99f54bd4ff16de91c4d191cf1cf5bd4e2669.zip
This commit was manufactured by cvs2svn to create branch 'dietlibc'.
Diffstat (limited to 'mdk-stage1/dietlibc/libstdio/ungetc.c')
-rw-r--r--mdk-stage1/dietlibc/libstdio/ungetc.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/mdk-stage1/dietlibc/libstdio/ungetc.c b/mdk-stage1/dietlibc/libstdio/ungetc.c
new file mode 100644
index 000000000..ae03e9381
--- /dev/null
+++ b/mdk-stage1/dietlibc/libstdio/ungetc.c
@@ -0,0 +1,11 @@
+#include "dietstdio.h"
+
+#ifdef WANT_UNGETC
+int ungetc(int c, FILE *stream) {
+ if (stream->ungotten)
+ return EOF;
+ stream->ungotten=1;
+ stream->ungetbuf=(char)(unsigned char)c;
+ return c;
+}
+#endif