From 52728b7d416f7837fc3460a9e131355094649b15 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Fri, 23 Dec 2005 12:29:13 +0000 Subject: r12446: Merge mkproto.sh's functionality into mkproto.pl Allow specifying the _PUBLIC_ keyword on functions to indicate a function is public. Public prototypes can now be written to a seperate header, although this functionality is not used yet. (This used to be commit e3466df6dfb62bbf8bee3acfa92996945054c2dd) --- source4/include/includes.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source4/include/includes.h') diff --git a/source4/include/includes.h b/source4/include/includes.h index 18fc38031c..9f5679fa80 100644 --- a/source4/include/includes.h +++ b/source4/include/includes.h @@ -160,4 +160,6 @@ extern int DEBUGLEVEL; #define discard_const(ptr) ((void *)((intptr_t)(ptr))) #define discard_const_p(type, ptr) ((type *)discard_const(ptr)) +#define _PUBLIC_ + #endif /* _INCLUDES_H */ -- cgit