aboutsummaryrefslogtreecommitdiff
path: root/atom.c
diff options
context:
space:
mode:
Diffstat (limited to 'atom.c')
-rw-r--r--atom.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/atom.c b/atom.c
index 73ecd7e..375bd3e 100644
--- a/atom.c
+++ b/atom.c
@@ -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)
{