internal_statvfs.h 1.1 KB

1234567891011121314151617181920212223242526
  1. /* Internal statvfs/statvfs64 function prototypes.
  2. Copyright (C) 2017-2019 Free Software Foundation, Inc.
  3. This file is part of the GNU C Library.
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Lesser General Public
  6. License as published by the Free Software Foundation; either
  7. version 2.1 of the License, or (at your option) any later version.
  8. The GNU C Library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with the GNU C Library; if not, see
  14. <http://www.gnu.org/licenses/>. */
  15. #include <sys/statvfs.h>
  16. extern void __internal_statvfs (const char *name, struct statvfs *buf,
  17. struct statfs *fsbuf, int fd)
  18. attribute_hidden;
  19. extern void __internal_statvfs64 (const char *name, struct statvfs64 *buf,
  20. struct statfs64 *fsbuf, int fd)
  21. attribute_hidden;