summaryrefslogtreecommitdiff
path: root/src/common/lock.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/lock.hpp')
-rw-r--r--src/common/lock.hpp17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/common/lock.hpp b/src/common/lock.hpp
deleted file mode 100644
index 5ca1aed..0000000
--- a/src/common/lock.hpp
+++ /dev/null
@@ -1,17 +0,0 @@
-#ifndef LOCK_HPP
-#define LOCK_HPP
-
-#include "sanity.hpp"
-
-#include <cstdio>
-
-#include "../strings/fwd.hpp"
-
-// TODO replace with a class
-
-/// Locked FILE I/O
-// Changes are made in a separate file until lock_fclose
-FILE *lock_fopen(ZString filename, int *info);
-void lock_fclose(FILE *fp, ZString filename, int *info);
-
-#endif // LOCK_HPP