comparison arogue5/rogue.h @ 99:dfeed24bb616

arogue5: port to autoconf. 'configure' and 'make install' now work. There may be problems with hard-to-test features like MAXLOAD.
author John "Elwin" Edwards
date Sat, 31 Aug 2013 09:18:07 -0700
parents 7aff18a8d508
children a5433ba4cabf
comparison
equal deleted inserted replaced
98:ea71ef31d9be 99:dfeed24bb616
9 * Copyright (C) 1980, 1981 Michael Toy, Ken Arnold and Glenn Wichman 9 * Copyright (C) 1980, 1981 Michael Toy, Ken Arnold and Glenn Wichman
10 * All rights reserved. 10 * All rights reserved.
11 * 11 *
12 * See the file LICENSE.TXT for full copyright and licensing information. 12 * See the file LICENSE.TXT for full copyright and licensing information.
13 */ 13 */
14
15 #ifdef HAVE_CONFIG_H
16 #include "config.h"
17 #endif
14 18
15 #define reg register /* register abbr. */ 19 #define reg register /* register abbr. */
16 #define NOOP(x) (x += 0) 20 #define NOOP(x) (x += 0)
17 #define CCHAR(x) ( (char) (x & A_CHARTEXT) ) 21 #define CCHAR(x) ( (char) (x & A_CHARTEXT) )
18 22