summaryrefslogtreecommitdiff
path: root/src/common/lock.c
diff options
context:
space:
mode:
authorai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec>2010-11-30 18:02:54 +0000
committerai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec>2010-11-30 18:02:54 +0000
commit0b3a25080b95770f5447a0dbde4625d122b31fb3 (patch)
treec501015d8b6c3148339c16d4e447ab4b1408220d /src/common/lock.c
parent80907412c396e576da0a7fbdc3c6babbb2c16c02 (diff)
downloadhercules-0b3a25080b95770f5447a0dbde4625d122b31fb3.tar.gz
hercules-0b3a25080b95770f5447a0dbde4625d122b31fb3.tar.bz2
hercules-0b3a25080b95770f5447a0dbde4625d122b31fb3.tar.xz
hercules-0b3a25080b95770f5447a0dbde4625d122b31fb3.zip
* Moved function 'exists' (file presense check) to utils.c, so that it is available to code outside of lock.c
- Fixed associated F_OK and R_OK defines causing 'already defined' warnings on MinGW (since r1361). git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14528 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/common/lock.c')
-rw-r--r--src/common/lock.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/common/lock.c b/src/common/lock.c
index 5cb4c3a67..643b86e5c 100644
--- a/src/common/lock.c
+++ b/src/common/lock.c
@@ -1,8 +1,9 @@
// Copyright (c) Athena Dev Teams - Licensed under GNU GPL
// For more information, see LICENCE in the main folder
-#include "../common/cbasetypes.h"
-#include "../common/showmsg.h"
+#include "cbasetypes.h"
+#include "showmsg.h"
+#include "utils.h"
#include "lock.h"
#include <stdio.h>
@@ -12,12 +13,8 @@
#include <unistd.h>
#else
#include <io.h>
-#define F_OK 0x0
-#define R_OK 0x4
#endif
-#define exists(filename) (!access(filename, F_OK))
-
// 書き込みファイルの保護処理
// (書き込みが終わるまで、旧ファイルを保管しておく)