diff options
author | Andrew Tridgell <tridge@samba.org> | 1996-08-16 07:39:46 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 1996-08-16 07:39:46 +0000 |
commit | 8508c953b128a3aecf99cb003d7773a3d40be789 (patch) | |
tree | 7f3d86b6e1a5dbeaa9ece785c6020cacfe33ad65 | |
parent | 52566664a4160ae96d647a943f3693cfc335ec38 (diff) | |
download | samba-8508c953b128a3aecf99cb003d7773a3d40be789.tar.gz samba-8508c953b128a3aecf99cb003d7773a3d40be789.tar.bz2 samba-8508c953b128a3aecf99cb003d7773a3d40be789.zip |
added support for the Bull Operating System (BOS)
(This used to be commit 46277e64a1bcfeff3715ebca3657ef4103ac4664)
-rw-r--r-- | source3/include/includes.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/source3/include/includes.h b/source3/include/includes.h index fd468abc07..79400683fe 100644 --- a/source3/include/includes.h +++ b/source3/include/includes.h @@ -891,6 +891,20 @@ typedef int mode_t; #endif +#ifdef BOS +#define SIGNAL_CAST (void (*)(int)) +#include <string.h> +#include <sys/dir.h> +#include <sys/select.h> +#include <dirent.h> +#include <fcntl.h> +#include <signal.h> +#include <sys/statfs.h> +#include <sys/bsdioctl.h> +#endif + + + /******************************************************************* end of the platform specific sections ********************************************************************/ |