boinc/lib/std_fixes.h

117 lines
2.9 KiB
C
Raw Normal View History

// The contents of this file are subject to the BOINC Public License
// Version 1.0 (the "License"); you may not use this file except in
// compliance with the License. You may obtain a copy of the License at
// http://boinc.berkeley.edu/license_1.0.txt
//
// Software distributed under the License is distributed on an "AS IS"
// basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
// License for the specific language governing rights and limitations
// under the License.
//
// The Original Code is the Berkeley Open Infrastructure for Network Computing.
//
// The Initial Developer of the Original Code is the SETI@home project.
// Portions created by the SETI@home project are Copyright (C) 2002
// University of California at Berkeley. All Rights Reserved.
//
// Contributor(s):
//
#ifndef _STD_FIXES_H_
#define _STD_FIXES_H_
#ifndef CONFIG_TEST
#ifndef HAVE_STD_MIN
namespace std {
#ifdef min
#undef min
#endif
template <typename T>
inline T min(const T &a, const T &b) {
return ((a<b)?a:b);
}
}
#endif
#ifndef HAVE_STD_MAX
namespace std {
#ifdef max
#undef max
#endif
template <typename T>
inline T max(const T &a, const T &b) {
return ((a>b)?a:b);
}
}
#endif
#ifndef HAVE_STD_TRANSFORM
#include <algorithm>
#include <iterator>
namespace std {
#ifdef transform
#undef transform
#endif
template <typename i_iterator, typename o_iterator, typename OP>
o_iterator transform(i_iterator first, i_iterator last, o_iterator res, OP op) {
for (;first != last; first++) {
*(res++)=op(*first);
}
return (res);
}
}
#endif
#endif
#if defined(LARGEFILE_BREAKS_CXX) && (defined(_LARGE_FILES) || (_FILE_OFFSET_BITS==64))
#include <stdio.h>
#include <fcntl.h>
#undef fopen
#undef freopen
#undef tmpfile
#undef fgetpos
#undef fsetpos
#undef fseeko
#undef ftello
#undef open
#undef creat
extern "C" {
FILE *fopen(const char *, const char *);
FILE *freopen(const char *, const char *, FILE *);
FILE *tmpfile(void);
int fgetpos(FILE *, fpos64_t *);
int fsetpos(FILE *, const fpos64_t *);
int fseeko(FILE *, const off64_t, int);
off64_t ftello(FILE *);
int open(const char *, int, mode_t mode=0);
int creat(const char *, mode_t mode);
}
inline FILE *fopen(const char *path, const char *mode) { return fopen64(path,
mode); }
inline FILE *freopen(const char *path, const char *mode, FILE *file) { return
freopen64(path,mode,file); }
inline FILE *tmpfile(void) {return tmpfile64();}
inline int fgetpos(FILE *file, fpos64_t *pos) { return fgetpos64(file,pos); }
inline int fsetpos(FILE *file, const fpos64_t *pos) { return fsetpos64(file,pos); }
inline int fseeko(FILE *file, const off64_t pos, int whence) {return fseeko64(file,pos,whence);}
inline off64_t ftello(FILE *file) {return ftello64(file);}
inline int open(const char *filename, int flags, mode_t mode) { return open64(filename,flags,mode); }
inline int creat(const char *filename, mode_t mode) { return creat64(filename,mode); }
#endif
#endif