summaryrefslogtreecommitdiff
path: root/MLKRoot.m
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <matthias@benkard.de>2008-07-03 18:31:41 +0200
committerMatthias Andreas Benkard <matthias@benkard.de>2008-07-03 18:31:41 +0200
commitd131dfdf8a248d509d676edd09804c597d8d1502 (patch)
tree2391d5869891c7941ff5f64505c644c506e6a661 /MLKRoot.m
parentd2177ce363fd5b0d8d3faf6d25f2944e43236e11 (diff)
Move functions nullify and denullify to util.h.
Diffstat (limited to 'MLKRoot.m')
-rw-r--r--MLKRoot.m18
1 files changed, 1 insertions, 17 deletions
diff --git a/MLKRoot.m b/MLKRoot.m
index c30a043..cafafe1 100644
--- a/MLKRoot.m
+++ b/MLKRoot.m
@@ -26,6 +26,7 @@
#import "MLKSingleFloat.h"
#import "MLKDoubleFloat.h"
#import "runtime-compatibility.h"
+#import "util.h"
#import <Foundation/NSArray.h>
#import <Foundation/NSException.h>
@@ -36,23 +37,6 @@
#import <Foundation/NSString.h>
-static id nullify (id value)
-{
- if (value)
- return value;
- else
- return [NSNull null];
-}
-
-static id denullify (id value)
-{
- if (value == [NSNull null])
- return nil;
- else
- return value;
-}
-
-
static NSMethodSignature *signature;
static MLKPackage *sys;
static MLKPackage *cl;