Skip to content
Snippets Groups Projects
Commit d1c300e5 authored by Henrik (Grubba) Grubbström's avatar Henrik (Grubba) Grubbström
Browse files

Now has fallback to the L_ macros if the SEEK_ macros aren't defined.

Rev: src/modules/Pipe/pipe.c:1.23
parent 169c5400
No related branches found
No related tags found
No related merge requests found
......@@ -4,6 +4,10 @@
#include <sys/types.h>
#include <sys/stat.h>
#ifdef HAVE_SYS_FILE_H
#include <sys/file.h>
#endif /* HAVE_SYS_FILE_H */
#include <errno.h>
#ifdef HAVE_SYS_MMAN_H
......@@ -22,7 +26,7 @@
#include <fcntl.h>
#include "global.h"
RCSID("$Id: pipe.c,v 1.22 1998/05/17 18:37:12 grubba Exp $");
RCSID("$Id: pipe.c,v 1.23 1998/05/17 18:53:03 grubba Exp $");
#include "threads.h"
#include "stralloc.h"
......@@ -50,13 +54,25 @@ RCSID("$Id: pipe.c,v 1.22 1998/05/17 18:37:12 grubba Exp $");
*/
#ifndef SEEK_SET
#ifdef L_SET
#define SEEK_SET L_SET
#else /* !L_SET */
#define SEEK_SET 0
#endif /* L_SET */
#endif /* SEEK_SET */
#ifndef SEEK_CUR
#ifdef L_INCR
#define SEEK_SET L_INCR
#else /* !L_INCR */
#define SEEK_CUR 1
#endif /* L_INCR */
#endif /* SEEK_CUR */
#ifndef SEEK_END
#ifdef L_XTND
#define SEEK_END L_XTND
#else /* !L_XTND */
#define SEEK_END 2
#endif /* L_XTND */
#endif /* SEEK_END */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment