aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2003-01-17 13:27:28 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2003-01-17 13:27:28 -0200
commit9a5bab82ff6f11773866f9f7c38f69c98b19d2e8 (patch)
tree7ece18197a96e2ed3b156c1fb99440124becf95a
parent32fd039bb563b24cbe4621dcc9b3cc18d9e078b0 (diff)
downloadlua-9a5bab82ff6f11773866f9f7c38f69c98b19d2e8.tar.gz
lua-9a5bab82ff6f11773866f9f7c38f69c98b19d2e8.tar.bz2
lua-9a5bab82ff6f11773866f9f7c38f69c98b19d2e8.zip
use the more modern _POSIX_C_SOURCE instead of older _POSIX_SOURCE
-rw-r--r--liolib.c9
-rw-r--r--lua.c4
2 files changed, 10 insertions, 3 deletions
diff --git a/liolib.c b/liolib.c
index f61e1823..95b74795 100644
--- a/liolib.c
+++ b/liolib.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: liolib.c,v 2.28 2002/12/04 17:38:31 roberto Exp roberto $ 2** $Id: liolib.c,v 2.29 2002/12/20 10:26:33 roberto Exp roberto $
3** Standard I/O (and system) library 3** Standard I/O (and system) library
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -28,6 +28,13 @@
28*/ 28*/
29 29
30 30
31#ifdef _POSIX_C_SOURCE
32#if _POSIX_C_SOURCE >= 2
33#define USE_POPEN
34#endif
35#endif
36
37
31#ifndef USE_POPEN 38#ifndef USE_POPEN
32#define pclose(f) (-1) 39#define pclose(f) (-1)
33#endif 40#endif
diff --git a/lua.c b/lua.c
index 1f303d20..8ae2607a 100644
--- a/lua.c
+++ b/lua.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lua.c,v 1.112 2002/12/04 17:28:27 roberto Exp roberto $ 2** $Id: lua.c,v 1.113 2002/12/04 17:38:31 roberto Exp roberto $
3** Lua stand-alone interpreter 3** Lua stand-alone interpreter
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -26,7 +26,7 @@
26#endif 26#endif
27 27
28 28
29#ifdef _POSIX_SOURCE 29#ifdef _POSIX_C_SOURCE
30#include <unistd.h> 30#include <unistd.h>
31#else 31#else
32static int isatty (int x) { return x==0; } /* assume stdin is a tty */ 32static int isatty (int x) { return x==0; } /* assume stdin is a tty */