summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/libstdio/fopen.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/fopen.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/fopen.c')
-rw-r--r--mdk-stage1/dietlibc/libstdio/fopen.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/mdk-stage1/dietlibc/libstdio/fopen.c b/mdk-stage1/dietlibc/libstdio/fopen.c
new file mode 100644
index 000000000..aac17be42
--- /dev/null
+++ b/mdk-stage1/dietlibc/libstdio/fopen.c
@@ -0,0 +1,21 @@
+#include <sys/types.h>
+#include <dietstdio.h>
+#include <unistd.h>
+
+#define SEEK_END 2
+
+extern int __stdio_atexit;
+extern void __stdio_flushall();
+
+extern int __stdio_parse_mode(const char *mode);
+extern FILE* __stdio_init_file(int fd);
+
+FILE *fopen (const char *path, const char *mode) {
+ int f=0; /* O_RDONLY, O_WRONLY or O_RDWR */
+ int fd;
+
+ f=__stdio_parse_mode(mode);
+ if ((fd=open(path,f,0666))<0)
+ return 0;
+ return __stdio_init_file(fd);
+}