Changeset 634e746 in rtems for c/src/lib/libbsp/m68k/dmv152/startup/bspstart.c
- Timestamp:
- 01/29/97 00:28:47 (26 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- dcec5a4
- Parents:
- 2f93371
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/m68k/dmv152/startup/bspstart.c
r2f93371 r634e746 61 61 /* 62 62 * Init the RTEMS libio facility to provide UNIX-like system 63 * calls for use by newlib (ie: provide __ open, __close, etc)63 * calls for use by newlib (ie: provide __rtems_open, __rtems_close, etc) 64 64 * Uses malloc() to get area for the iops, so must be after malloc init 65 65 */ … … 127 127 error_code = 'S' << 24 | 'T' << 16; 128 128 129 if ((stdin_fd = __ open("/dev/console", O_RDONLY, 0)) == -1)129 if ((stdin_fd = __rtems_open("/dev/console", O_RDONLY, 0)) == -1) 130 130 rtems_fatal_error_occurred( error_code | 'D' << 8 | '0' ); 131 131 132 if ((stdout_fd = __ open("/dev/console", O_WRONLY, 0)) == -1)132 if ((stdout_fd = __rtems_open("/dev/console", O_WRONLY, 0)) == -1) 133 133 rtems_fatal_error_occurred( error_code | 'D' << 8 | '1' ); 134 134 135 if ((stderr_fd = __ open("/dev/console", O_WRONLY, 0)) == -1)135 if ((stderr_fd = __rtems_open("/dev/console", O_WRONLY, 0)) == -1) 136 136 rtems_fatal_error_occurred( error_code | 'D' << 8 | '2' ); 137 137
Note: See TracChangeset
for help on using the changeset viewer.