* include/sys/file.h: Add extern "C".
This commit is contained in:
parent
a4a96eb436
commit
0b20d00bf3
|
@ -1,3 +1,7 @@
|
|||
2014-08-04 Anthony Heading <anthony@ajrh.net>
|
||||
|
||||
* include/sys/file.h: Add extern "C".
|
||||
|
||||
2014-08-04 Corinna Vinschen <corinna@vinschen.de>
|
||||
|
||||
* common.din (__cxa_atexit): Export.
|
||||
|
|
|
@ -39,8 +39,17 @@
|
|||
#define LOCK_NB 0x04 /* don't block when locking */
|
||||
#define LOCK_UN 0x08 /* unlock file */
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C"
|
||||
{
|
||||
#endif
|
||||
|
||||
extern int flock _PARAMS ((int, int));
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue