inline.c revision d1154eb460efe588eaed3d439c1caaca149fa362
13839e65723771b85975f4263102dd3ceec4523cTheodore Ts'o/*
23839e65723771b85975f4263102dd3ceec4523cTheodore Ts'o * inline.c --- Includes the inlined functions defined in the header
33839e65723771b85975f4263102dd3ceec4523cTheodore Ts'o * 	files as standalone functions, in case the application program
43839e65723771b85975f4263102dd3ceec4523cTheodore Ts'o * 	is compiled with inlining turned off.
5efc6f628e15de95bcd13e4f0ee223cb42115d520Theodore Ts'o *
619c78dc07fce2d6f39b5e541562afc3ca1ea38ffTheodore Ts'o * Copyright (C) 1993, 1994 Theodore Ts'o.
719c78dc07fce2d6f39b5e541562afc3ca1ea38ffTheodore Ts'o *
819c78dc07fce2d6f39b5e541562afc3ca1ea38ffTheodore Ts'o * %Begin-Header%
9543547a52a20cb7e69d74921b2f691078fd55d83Theodore Ts'o * This file may be redistributed under the terms of the GNU Library
10543547a52a20cb7e69d74921b2f691078fd55d83Theodore Ts'o * General Public License, version 2.
1119c78dc07fce2d6f39b5e541562afc3ca1ea38ffTheodore Ts'o * %End-Header%
123839e65723771b85975f4263102dd3ceec4523cTheodore Ts'o */
133839e65723771b85975f4263102dd3ceec4523cTheodore Ts'o
143839e65723771b85975f4263102dd3ceec4523cTheodore Ts'o
15d1154eb460efe588eaed3d439c1caaca149fa362Theodore Ts'o#include "config.h"
163839e65723771b85975f4263102dd3ceec4523cTheodore Ts'o#include <stdio.h>
173839e65723771b85975f4263102dd3ceec4523cTheodore Ts'o#include <string.h>
184cbe8af4b0d0c72fb28bb500c1bd8a46b00fdde3Theodore Ts'o#if HAVE_UNISTD_H
193839e65723771b85975f4263102dd3ceec4523cTheodore Ts'o#include <unistd.h>
204cbe8af4b0d0c72fb28bb500c1bd8a46b00fdde3Theodore Ts'o#endif
213839e65723771b85975f4263102dd3ceec4523cTheodore Ts'o#include <fcntl.h>
223839e65723771b85975f4263102dd3ceec4523cTheodore Ts'o#include <time.h>
231d2ff46ae7533ffd038534b189f272d2a4122e4eTheodore Ts'o#if HAVE_SYS_STAT_H
243839e65723771b85975f4263102dd3ceec4523cTheodore Ts'o#include <sys/stat.h>
251d2ff46ae7533ffd038534b189f272d2a4122e4eTheodore Ts'o#endif
261d2ff46ae7533ffd038534b189f272d2a4122e4eTheodore Ts'o#if HAVE_SYS_TYPES_H
273839e65723771b85975f4263102dd3ceec4523cTheodore Ts'o#include <sys/types.h>
281d2ff46ae7533ffd038534b189f272d2a4122e4eTheodore Ts'o#endif
293839e65723771b85975f4263102dd3ceec4523cTheodore Ts'o
30b5abe6fac9c9e7caf4710501d1657d30e4857ef6Theodore Ts'o#include "ext2_fs.h"
313839e65723771b85975f4263102dd3ceec4523cTheodore Ts'o#define INCLUDE_INLINE_FUNCS
323839e65723771b85975f4263102dd3ceec4523cTheodore Ts'o#include "ext2fs.h"
333839e65723771b85975f4263102dd3ceec4523cTheodore Ts'o
34