diff options
| author | Oskari Timperi <oskari.timperi@iki.fi> | 2014-05-15 22:48:34 +0300 |
|---|---|---|
| committer | Oskari Timperi <oskari.timperi@iki.fi> | 2014-05-15 22:48:34 +0300 |
| commit | e23d0ee6eec1433849e4af1f3906a0946a19aef4 (patch) | |
| tree | b7eaef2719ebc43a976cd5f63dea30d03fecca9a /atom.c | |
| parent | 3666d3b9334286a2242c8da20cac446dd9ee17e9 (diff) | |
| download | lispish-e23d0ee6eec1433849e4af1f3906a0946a19aef4.tar.gz lispish-e23d0ee6eec1433849e4af1f3906a0946a19aef4.zip | |
add atom types for true, false, nil
Diffstat (limited to 'atom.c')
| -rw-r--r-- | atom.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -4,9 +4,9 @@ #include <stdlib.h> #include <string.h> -struct atom true_atom; -struct atom false_atom; -struct atom nil_atom; +struct atom true_atom = { ATOM_TRUE }; +struct atom false_atom = { ATOM_FALSE }; +struct atom nil_atom = { ATOM_NIL } ; struct atom *atom_new(char type) { |
