258
259
260
261
262
263
264
265
266
267
268
269
|
/*
** The pledge() interface is currently only available on OpenBSD 5.9
** and later. Make calls to fossil_pledge() no-ops on all platforms
** that omit the FOSSIL_HAVE_PLEDGE configuration parameter.
*/
#if !defined(HAVE_PLEDGE)
# define fossil_pledge(A,B)
#endif
#endif /* _RC_COMPILE_ */
|
|
|
258
259
260
261
262
263
264
265
266
267
268
269
|
/*
** The pledge() interface is currently only available on OpenBSD 5.9
** and later. Make calls to fossil_pledge() no-ops on all platforms
** that omit the FOSSIL_HAVE_PLEDGE configuration parameter.
*/
#if !defined(HAVE_PLEDGE)
# define fossil_pledge(A)
#endif
#endif /* _RC_COMPILE_ */
|