diff options
author | Christopher Faylor <me@cgf.cx> | 2000-08-12 04:48:44 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2000-08-12 04:48:44 +0000 |
commit | 9015e0fb8c0fbb98f919dd3726ddbc97e46bd9fd (patch) | |
tree | 14cc365950ecf7a837508a410cf4dd0fa4ab3b97 /winsup/cygwin/dcrt0.cc | |
parent | 86bf05d54094008ba6e8a1c692d4a71879ee6590 (diff) | |
download | cygnal-9015e0fb8c0fbb98f919dd3726ddbc97e46bd9fd.tar.gz cygnal-9015e0fb8c0fbb98f919dd3726ddbc97e46bd9fd.tar.bz2 cygnal-9015e0fb8c0fbb98f919dd3726ddbc97e46bd9fd.zip |
Rename hinfo -> dtable. Name the former dtable array 'fdtab'.
Diffstat (limited to 'winsup/cygwin/dcrt0.cc')
-rw-r--r-- | winsup/cygwin/dcrt0.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/winsup/cygwin/dcrt0.cc b/winsup/cygwin/dcrt0.cc index f84a164a5..aa00a3ace 100644 --- a/winsup/cygwin/dcrt0.cc +++ b/winsup/cygwin/dcrt0.cc @@ -729,8 +729,8 @@ dll_crt0_1 () set_console_title (cp); } - /* Allocate dtable */ - dtable_init (); + /* Allocate fdtab */ + fdtab_init (); /* Initialize uid, gid. */ uinfo_init (); @@ -742,7 +742,7 @@ dll_crt0_1 () tty_init (); /* Set up standard fds in file descriptor table. */ - hinfo_init (); + stdio_init (); if (user_data->premain[0]) for (unsigned int i = 0; i < PREMAIN_LEN / 2; i++) |