summaryrefslogtreecommitdiff
path: root/src/common/lock.hpp
diff options
context:
space:
mode:
authorBen Longbons <b.r.longbons@gmail.com>2013-11-15 20:30:49 -0800
committerBen Longbons <b.r.longbons@gmail.com>2013-11-15 21:43:08 -0800
commit672c4091b5a43442759886144607aa407a04e5bc (patch)
treecda5dc54039f6c711d07aae8890f99269c499a42 /src/common/lock.hpp
parentf8747c4355f43b11489cc85eb8b5b922685fec39 (diff)
downloadtmwa-672c4091b5a43442759886144607aa407a04e5bc.tar.gz
tmwa-672c4091b5a43442759886144607aa407a04e5bc.tar.bz2
tmwa-672c4091b5a43442759886144607aa407a04e5bc.tar.xz
tmwa-672c4091b5a43442759886144607aa407a04e5bc.zip
Unbreak build
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