mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-16 20:09:42 +08:00
6599da043e
From-SVN: r14877
10 lines
122 B
C
10 lines
122 B
C
#include "libioP.h"
|
|
|
|
_IO_FILE *
|
|
fdopen (fd, mode)
|
|
int fd;
|
|
const char *mode;
|
|
{
|
|
return _IO_fdopen (fd, mode);
|
|
}
|