summaryrefslogtreecommitdiff
path: root/util/location.c
diff options
context:
space:
mode:
Diffstat (limited to 'util/location.c')
-rw-r--r--util/location.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/util/location.c b/util/location.c
deleted file mode 100644
index 4b450ce..0000000
--- a/util/location.c
+++ /dev/null
@@ -1,10 +0,0 @@
-typedef uint32_t LineNo;
-typedef struct {
- LineNo line;
- char *code;
- const char *filename;
-} Location;
-
-bool location_after(Location a, Location b) { /* a is after b? */
- return a.code > b.code;
-}