Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/posix/stdlib.c

    rcc3652db rec18957a  
    3636#define LIBPOSIX_INTERNAL
    3737
     38#include "internal/common.h"
    3839#include "stdlib.h"
     40
     41#include "errno.h"
     42
    3943#include "libc/sort.h"
    4044#include "libc/str.h"
    4145#include "libc/vfs/vfs.h"
    42 #include "internal/common.h"
    43 #include <errno.h>  // FIXME: use POSIX errno
    4446
    4547/**
     
    338340}
    339341
     342/**
     343 * Should read system load statistics. Not supported. Always returns -1.
     344 *
     345 * @param loadavg
     346 * @param nelem
     347 * @return
     348 */
     349int bsd_getloadavg(double loadavg[], int nelem)
     350{
     351        return -1;
     352}
     353
    340354/** @}
    341355 */
Note: See TracChangeset for help on using the changeset viewer.