Changes in uspace/lib/posix/stdlib.c [ec18957a:cc3652db] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/stdlib.c
rec18957a rcc3652db 36 36 #define LIBPOSIX_INTERNAL 37 37 38 #include "internal/common.h"39 38 #include "stdlib.h" 40 41 #include "errno.h"42 43 39 #include "libc/sort.h" 44 40 #include "libc/str.h" 45 41 #include "libc/vfs/vfs.h" 42 #include "internal/common.h" 43 #include <errno.h> // FIXME: use POSIX errno 46 44 47 45 /** … … 340 338 } 341 339 342 /**343 * Should read system load statistics. Not supported. Always returns -1.344 *345 * @param loadavg346 * @param nelem347 * @return348 */349 int bsd_getloadavg(double loadavg[], int nelem)350 {351 return -1;352 }353 354 340 /** @} 355 341 */
Note:
See TracChangeset
for help on using the changeset viewer.