blob: 9c3a6c0d399d35203f8aa6fa03faa02214a59600 [file] [log] [blame]
Mike Frysinger1fd98e02005-05-09 22:10:42 +00001/*
2 * inline.c --- Includes the inlined functions defined in the header
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00003 * files as standalone functions, in case the application program
4 * is compiled with inlining turned off.
5 *
Mike Frysinger1fd98e02005-05-09 22:10:42 +00006 * 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
14
15#include <stdio.h>
16#include <string.h>
17#if HAVE_UNISTD_H
18#include <unistd.h>
19#endif
20#include <fcntl.h>
21#include <time.h>
22#if HAVE_SYS_STAT_H
23#include <sys/stat.h>
24#endif
25#if HAVE_SYS_TYPES_H
26#include <sys/types.h>
27#endif
28
29#include "ext2_fs.h"
30#define INCLUDE_INLINE_FUNCS
31#include "ext2fs.h"
32