2005-11-07 21:17:21 +03:00
|
|
|
#ifndef BEOS_BUILD_COMPATIBILITY_H
|
|
|
|
#define BEOS_BUILD_COMPATIBILITY_H
|
2005-11-04 17:48:35 +03:00
|
|
|
|
2008-07-24 01:39:13 +04:00
|
|
|
#if defined(HAIKU_HOST_PLATFORM_CYGWIN)
|
|
|
|
#ifndef __addr_t_defined
|
|
|
|
#define __addr_t_defined
|
|
|
|
#endif
|
2008-08-09 19:36:24 +04:00
|
|
|
#endif
|
2008-07-24 01:39:13 +04:00
|
|
|
|
2008-08-09 19:36:24 +04:00
|
|
|
#if defined(HAIKU_HOST_PLATFORM_CYGWIN) || defined(HAIKU_HOST_PLATFORM_SUNOS)
|
2008-07-24 01:39:13 +04:00
|
|
|
#ifndef DEFFILEMODE
|
|
|
|
#define DEFFILEMODE (S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef S_IUMSK
|
|
|
|
#define S_IUMSK 07777
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <ctype.h>
|
|
|
|
#endif
|
|
|
|
|
2008-08-09 19:36:24 +04:00
|
|
|
#ifdef HAIKU_HOST_PLATFORM_SUNOS
|
|
|
|
# include <limits.h>
|
|
|
|
# ifndef NAME_MAX
|
|
|
|
# define NAME_MAX MAXNAMELEN
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2005-11-04 17:48:35 +03:00
|
|
|
typedef unsigned long haiku_build_addr_t;
|
|
|
|
#define addr_t haiku_build_addr_t
|
|
|
|
|
|
|
|
#include <Errors.h>
|
2007-09-05 06:54:24 +04:00
|
|
|
|
|
|
|
#include <fcntl.h>
|
2005-11-04 17:48:35 +03:00
|
|
|
#include <string.h>
|
2007-09-05 06:54:24 +04:00
|
|
|
#include <sys/types.h>
|
2007-09-04 22:42:13 +04:00
|
|
|
#include <sys/uio.h>
|
2005-11-04 17:48:35 +03:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Is kernel-only under Linux.
|
|
|
|
extern size_t strlcpy(char *dest, const char *source, size_t length);
|
2006-02-03 15:14:56 +03:00
|
|
|
extern size_t strlcat(char *dest, const char *source, size_t length);
|
2005-11-04 17:48:35 +03:00
|
|
|
|
2007-05-18 19:59:04 +04:00
|
|
|
#if defined(HAIKU_HOST_PLATFORM_FREEBSD) || defined(HAIKU_HOST_PLATFORM_DARWIN)
|
2006-02-03 15:24:15 +03:00
|
|
|
extern size_t strnlen(const char *string, size_t length);
|
|
|
|
#endif
|
|
|
|
|
2008-08-09 19:36:24 +04:00
|
|
|
#if defined(HAIKU_HOST_PLATFORM_CYGWIN) || defined(HAIKU_HOST_PLATFORM_SUNOS)
|
2008-07-24 01:39:13 +04:00
|
|
|
extern char * stpcpy(char *dest, const char *src);
|
|
|
|
extern char * strcasestr(const char *s, const char *find);
|
|
|
|
#endif
|
|
|
|
|
2005-11-04 17:48:35 +03:00
|
|
|
// BeOS only
|
|
|
|
extern ssize_t read_pos(int fd, off_t pos, void *buffer, size_t count);
|
2007-04-27 16:11:30 +04:00
|
|
|
extern ssize_t write_pos(int fd, off_t pos, const void *buffer, size_t count);
|
|
|
|
extern ssize_t readv_pos(int fd, off_t pos, const struct iovec *vec,
|
|
|
|
size_t count);
|
|
|
|
extern ssize_t writev_pos(int fd, off_t pos, const struct iovec *vec,
|
|
|
|
size_t count);
|
2005-11-04 17:48:35 +03:00
|
|
|
|
|
|
|
|
2006-11-29 21:08:00 +03:00
|
|
|
// There's no O_NOTRAVERSE under Linux and FreeBSD, but there's a O_NOFOLLOW, which
|
2005-11-04 17:48:35 +03:00
|
|
|
// means something different (open() fails when the file is a symlink), but
|
|
|
|
// we can abuse this flag for our purposes (we filter it in libroot).
|
|
|
|
#ifndef O_NOTRAVERSE
|
|
|
|
#ifdef O_NOFOLLOW
|
|
|
|
#define O_NOTRAVERSE O_NOFOLLOW
|
|
|
|
#else
|
|
|
|
#define O_NOTRAVERSE 0
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef S_IUMSK
|
|
|
|
#define S_IUMSK ALLPERMS
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
// remap strerror()
|
|
|
|
extern char *_haiku_build_strerror(int errnum);
|
|
|
|
|
|
|
|
#ifndef BUILDING_HAIKU_ERROR_MAPPER
|
|
|
|
|
|
|
|
#undef strerror
|
|
|
|
#define strerror(errnum) _haiku_build_strerror(errnum)
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
} // extern "C"
|
|
|
|
#endif
|
|
|
|
|
2005-11-07 21:17:21 +03:00
|
|
|
#endif // BEOS_BUILD_COMPATIBILITY_H
|
2005-11-04 17:48:35 +03:00
|
|
|
|