1
0
Fork 0
mirror of https://github.com/puma/puma.git synced 2022-11-09 13:48:40 -05:00
puma--puma/projects/mongrel_service/native/boolean.bi
luislavena e63cf0903b Should be the source code, not the binary!. Forgot Booleans!
git-svn-id: svn+ssh://rubyforge.org/var/svn/mongrel/trunk@623 19e92222-5c0b-0410-8929-a290d50e31e9
2007-09-24 06:40:30 +00:00

18 lines
No EOL
368 B
Text

'#--
'# Copyright (c) 2006-2007 Luis Lavena, Multimedia systems
'#
'# This source code is released under the MIT License.
'# See MIT-LICENSE file for details
'#++
#ifndef __BOOLEAN_BI__
#define __BOOLEAN_BI__
#undef BOOLEAN
type BOOLEAN as byte
#undef FALSE
const FALSE as byte = 0
#undef TRUE
const TRUE as byte = not FALSE
#endif ' __BOOLEAN_BI__