Changeset 8cd8bf6 in mainline for uspace/lib/posix/stdlib.c
- Timestamp:
- 2011-07-08T17:25:53Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 11809eab
- Parents:
- f5b2522 (diff), ddc63fd (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/stdlib.c
rf5b2522 r8cd8bf6 36 36 #define LIBPOSIX_INTERNAL 37 37 38 #include "internal/common.h" 38 39 #include "stdlib.h" 40 41 #include "errno.h" 42 39 43 #include "libc/sort.h" 40 44 #include "libc/str.h" 41 45 #include "libc/vfs/vfs.h" 42 #include "internal/common.h"43 #include <errno.h> // FIXME: use POSIX errno44 46 45 47 /** … … 338 340 } 339 341 342 /** 343 * Should read system load statistics. Not supported. Always returns -1. 344 * 345 * @param loadavg 346 * @param nelem 347 * @return 348 */ 349 int bsd_getloadavg(double loadavg[], int nelem) 350 { 351 return -1; 352 } 353 340 354 /** @} 341 355 */
Note:
See TracChangeset
for help on using the changeset viewer.