Coda Distributed File System
coda_largefile.h
Go to the documentation of this file.
1/* BLURB gpl
2
3 Coda File System
4 Release 6
5
6 Copyright (c) 1987-2003 Carnegie Mellon University
7 Additional copyrights listed below
8
9This code is distributed "AS IS" without warranty of any kind under
10the terms of the GNU General Public Licence Version 2, as shown in the
11file LICENSE. The technical and financial contributors to Coda are
12listed in the file CREDITS.
13
14 Additional copyrights
15
16#*/
17
18#ifdef HAVE_CONFIG_H
19#include <config.h>
20#endif
21
22#ifdef __cplusplus
23extern "C" {
24#endif
25
26#include <sys/types.h>
27#include <stdio.h>
28
29#ifdef __cplusplus
30}
31#endif
32
33#ifndef HAVE_FSEEKO
34#define fseeko(stream, offset, whence) fseek((stream), (long)(offset), (whence))
35#define ftello(stream) (off_t) ftell((stream))
36#endif