3
0

inline.c 644 B

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