2.3.3-74
[glibc.git] / sysdeps / standalone / open.c
blobe0a343241573ee871d51044a0f8dc0e164e1bfdb
1 /* Copyright (C) 1994, 1995, 1996, 1997, 2002 Free Software Foundation, Inc.
2 Ported to standalone by Joel Sherrill jsherril@redstone-emh2.army.mil,
3 On-Line Applications Research Corporation.
4 This file is part of the GNU C Library.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, write to the Free
18 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
19 02111-1307 USA. */
21 #include <errno.h>
22 #include <fcntl.h>
23 #include <stdarg.h>
24 #include <stddef.h>
26 #include <stdio.h>
27 #include <bits/stdio_lim.h>
28 #include <unistd.h>
30 #define __DECLARE_FILE_DESCRIPTORS__
32 #include "filedesc.h"
34 /* Open FILE with access OFLAG. If OFLAG includes O_CREAT,
35 a third argument is the file protection. */
36 int
37 __open (file, oflag)
38 const char *file;
39 int oflag;
41 int mode;
42 int newfd;
43 int index;
45 if (file == NULL)
47 __set_errno (EINVAL);
48 return -1;
51 if (oflag & O_CREAT)
53 va_list arg;
54 va_start(arg, oflag);
55 mode = va_arg(arg, int);
56 va_end(arg);
60 * Find an open slot.
63 newfd = -1;
65 for ( index=0 ; index< FOPEN_MAX ; index++ )
66 if ( !__FD_Table[ index ].in_use ) {
67 newfd = index;
68 break;
71 if ( newfd == -1 ) {
72 __set_errno (ENFILE);
73 return -1;
77 * Initialize the open slot
80 __FD_Table[ newfd ].in_use = 1;
81 __FD_Table[ newfd ].flags = oflag;
83 return newfd;
85 libc_hidden_def (__open)
87 /* Initialization Code for Console I/O */
89 #ifdef HAVE_GNU_LD
90 static
91 #endif
92 void
93 __NONE_init_console_io (argc, argv, envp)
94 int argc;
95 char **argv;
96 char **envp;
98 int index;
100 for ( index=0 ; index< FOPEN_MAX ; index++ )
101 __FD_Table[ index ].in_use = 0;
103 stdin = fopen( "", "r" );
105 stdout = fopen( "", "w" );
107 stderr = fopen( "", "w" );
110 * Line buffer the standard input and output and use no buffering for
111 * standard error.
114 setvbuf( stdin, NULL, _IOLBF, BUFSIZ );
115 setvbuf( stdout, NULL, _IOLBF, BUFSIZ );
116 setvbuf( stderr, NULL, _IONBF, BUFSIZ );
118 (void) &__NONE_init_console_io; /* Avoid "defined but not used" warning. */
121 #ifdef HAVE_GNU_LD
122 text_set_element (__libc_subinit, __NONE_init_console_io);
123 #endif
125 weak_alias (__open, open)