255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
|
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
|
-
+
|
** Number of elements in an array
*/
#define count(X) (sizeof(X)/sizeof(X[0]))
/*
** 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.
** that omit the HAVE_PLEDGE configuration parameter.
*/
#if !defined(HAVE_PLEDGE)
# define fossil_pledge(A)
#endif
#endif /* _RC_COMPILE_ */
|