diff options
Diffstat (limited to 'misc/src/common/lock.h')
-rw-r--r-- | misc/src/common/lock.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/misc/src/common/lock.h b/misc/src/common/lock.h new file mode 100644 index 0000000..795bf88 --- /dev/null +++ b/misc/src/common/lock.h @@ -0,0 +1,8 @@ +#ifndef _LOCK_H_ +#define _LOCK_H_ + +FILE* lock_fopen(const char* filename,int *info); +int lock_fclose(FILE *fp,const char* filename,int *info); + +#endif + |