inline.c 666 B

123456789101112131415161718192021222324252627282930313233
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * inline.c --- Includes the inlined functions defined in the header
  4. * files as standalone functions, in case the application program
  5. * is compiled with inlining turned off.
  6. *
  7. * Copyright (C) 1993, 1994 Theodore Ts'o.
  8. *
  9. * %Begin-Header%
  10. * This file may be redistributed under the terms of the GNU Public
  11. * License.
  12. * %End-Header%
  13. */
  14. #include <stdio.h>
  15. #include <string.h>
  16. #if HAVE_UNISTD_H
  17. #include <unistd.h>
  18. #endif
  19. #include <fcntl.h>
  20. #include <time.h>
  21. #if HAVE_SYS_STAT_H
  22. #include <sys/stat.h>
  23. #endif
  24. #if HAVE_SYS_TYPES_H
  25. #include <sys/types.h>
  26. #endif
  27. #include "ext2_fs.h"
  28. #define INCLUDE_INLINE_FUNCS
  29. #include "ext2fs.h"