aboutsummaryrefslogtreecommitdiff
path: root/files.h
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2021-09-23 15:15:48 -0700
committerBruce Hill <bruce@bruce-hill.com>2021-09-23 15:15:48 -0700
commit8e1e6572feabd291cbd5048459c0a58c6460ff91 (patch)
treeadf66d019c271dc58cd9d47abdb7b1b20ab2226f /files.h
parentd20afd10b693180b667ebdb0bfab7b9afabc0b42 (diff)
Moved type defs into their own files instead of types.h
Diffstat (limited to 'files.h')
-rw-r--r--files.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/files.h b/files.h
index 3735348..41c8398 100644
--- a/files.h
+++ b/files.h
@@ -4,8 +4,6 @@
#ifndef FILES__H
#define FILES__H
-#include "types.h"
-
#include <stdio.h>
#include <unistd.h>
@@ -17,7 +15,6 @@ typedef struct file_s {
char *mmapped, *allocated;
char **lines, *start, *end;
size_t nlines;
- struct pat_s *pats;
} file_t;
__attribute__((nonnull(2)))