1
0
Fork 0
exim4/OS/unsupported/os.h-ULTRIX
Daniel Baumann 802ab461a9
Adding upstream version 4.98.2.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-21 14:27:17 +02:00

19 lines
594 B
Text

/* Exim: OS-specific C header file for Ultrix */
/* SPDX-License-Identifier: GPL-2.0-or-later */
/* Well, it *does* have statfs(), but its structure is called something
different, all the members have different names, and the function returns
1 on success rather than 0. As this is for a minority function, and I think
a minority operating system, easiest just to say "no" until someone asks. */
#undef HAVE_STATFS
#define F_FREESP O_TRUNC
#define NEED_H_ERRNO
#define NO_OPENLOG
typedef struct flock flock_t;
/* default is non-const */
#define ICONV_ARG2_TYPE const char **
/* End */