statfs.c 509 B

1234567891011121314151617181920212223
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * statfs() for uClibc
  4. *
  5. * Copyright (C) 2000-2004 by Erik Andersen <andersen@codepoet.org>
  6. *
  7. * GNU Library General Public License (LGPL) version 2 or later.
  8. */
  9. #include "syscalls.h"
  10. #include <string.h>
  11. #include <sys/param.h>
  12. #include <sys/vfs.h>
  13. #define __NR___syscall_statfs __NR_statfs
  14. static inline _syscall2(int, __syscall_statfs,
  15. const char *, path, struct statfs *, buf);
  16. int statfs(const char *path, struct statfs * buf)
  17. {
  18. return __syscall_statfs(path, buf);
  19. }