1
0
mirror of https://github.com/samba-team/samba.git synced 2025-12-13 16:23:50 +03:00

- fixed proto.h build on systems using a parallel make

- changed DENY1 and DENY2 tests to only report errors
This commit is contained in:
Andrew Tridgell
-
parent 842fcd94fa
commit 9341e5534d
4 changed files with 1590 additions and 197 deletions

View File

@@ -53,6 +53,9 @@
/* pointer difference macro */
#define PTR_DIFF(p1,p2) ((ptrdiff_t)(((const char *)(p1)) - (const char *)(p2)))
/* work out how many elements there are in a static array */
#define ARRAY_SIZE(a) (sizeof(a)/sizeof(a[0]))
/* assert macros */
#define SMB_ASSERT(b) ((b)?(void)0: \
(DEBUG(0,("PANIC: assert failed at %s(%d)\n", \