2001-09-13 Joel Sherrill <joel@OARcorp.com>

* src/sysconf.c: Fix typo syntax error accidentally committed.
This commit is contained in:
Joel Sherrill
2001-09-13 21:04:21 +00:00
parent 1cd0db4073
commit c8d66913ee
4 changed files with 10 additions and 2 deletions

View File

@@ -1,3 +1,7 @@
2001-09-13 Joel Sherrill <joel@OARcorp.com>
* src/sysconf.c: Fix typo syntax error accidentally committed.
2001-09-13 Joel Sherrill <joel@OARcorp.com>
* src/mprotect.c: New file. Stub required by some gcc's to pass tests.

View File

@@ -26,7 +26,7 @@ long sysconf(
case _SC_CLK_TCK:
return _TOD_Ticks_per_second;
o case _SC_OPEN_MAX: {
case _SC_OPEN_MAX: {
extern unsigned32 rtems_libio_number_iops;
return rtems_libio_number_iops;
}