~ubuntu-branches/ubuntu/edgy/e2fsprogs/edgy

« back to all changes in this revision

Viewing changes to lib/ext2fs/inline.c

  • Committer: Bazaar Package Importer
  • Author(s): Yann Dirson
  • Date: 2002-03-21 23:58:48 UTC
  • Revision ID: james.westby@ubuntu.com-20020321235848-cmmy98hy0nihp922
Tags: upstream-1.27
ImportĀ upstreamĀ versionĀ 1.27

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
 
 
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