pike.git/
lib/
master.pike.in
Branch:
Tag:
Non-build tags
All tags
No tags
2005-03-14
2005-03-14 17:22:59 by Per Hedbor <ph@opera.com>
fb2dc016484484a0115692e58cab4093ebe7b13b (
10
lines) (+
8
/-
2
)
[
Show
|
Annotate
]
Branch:
7.9
Added bool, true and false.
Rev: lib/master.pike.in:1.372
6:
// Pike is distributed under GPL, LGPL and MPL. See the file COPYING // for more information. //
-
// $Id: master.pike.in,v 1.
371
2005/
01
/
26
21
:
00
:
19
mast
Exp $
+
// $Id: master.pike.in,v 1.
372
2005/
03
/
14
17
:
22
:
59
per
Exp $
#pike __REAL_VERSION__ //#pragma strict_types
1071:
"describe_error", "get_backtrace", "normalize_path",
+
"bool",
+
"true",
+
"false",
"getenv", "putenv",
1080:
#endif });
+
enum bool { false=0, true=1 };
+
string include_prefix;
1103:
static void create() { foreach(master_efuns, string e)
-
if (this[e])
+
if (
!zero_type(
this[e])
)
add_constant(e, this[e]); else error("Function %O is missing from master.pike.\n", e);