1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
/* compat.h: various compatbility bits
Copyright (c) 2003 Philip Kendall
Copyright (c) 2015 Stuart Brady
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
Author contact information:
E-mail: philip-fuse@shadowmagic.org.uk
*/
#ifndef FUSE_UTILS_COMPAT_H
#define FUSE_UTILS_COMPAT_H
#include <stdlib.h>
/* Remove the gcc-specific incantations if we're not using gcc */
#ifdef __GNUC__
#define GCC_PRINTF( fmtstring, args ) __attribute__ ((format( printf, fmtstring, args )))
#else /* #ifdef __GNUC__ */
#define GCC_PRINTF( fmtstring, args )
#endif /* #ifdef __GNUC__ */
/* Certain brain damaged operating systems (DOS/Windows) treat text
and binary files different in open(2) and need to be given the
O_BINARY flag to tell them it's a binary file */
#ifndef O_BINARY
#define O_BINARY 0
#endif /* #ifndef O_BINARY */
/* Certain operating systems don't define group/other permissions */
#ifndef S_IRGRP
#define S_IRGRP 0
#endif /* #ifndef S_IRGRP */
#ifndef S_IWGRP
#define S_IWGRP 0
#endif /* #ifndef S_IWGRP */
#ifndef S_IROTH
#define S_IROTH 0
#endif /* #ifndef S_IROTH */
#ifndef S_IWOTH
#define S_IWOTH 0
#endif /* #ifndef S_IWOTH */
char *compat_basename( char *path );
int compat_osname( char *buffer, size_t length );
#endif /* #ifndef FUSE_UTILS_COMPAT_H */
|