Add warning message

Specify warning for internal only headers that are now installed for use
by extensions.
This commit is contained in:
Joe Rozner 2013-11-21 22:09:25 -08:00
parent 4b258c98e0
commit bb02aa18e7
4 changed files with 20 additions and 0 deletions

View file

@ -1,3 +1,8 @@
/*
* NOTE: This is an internal header and installed for use by extensions. The
* API is not guaranteed stable.
*/
// This is an internal header; it provides macros to make desugaring cleaner. // This is an internal header; it provides macros to make desugaring cleaner.
#include <assert.h> #include <assert.h>
#include "../internal.h" #include "../internal.h"

View file

@ -1,3 +1,8 @@
/*
* NOTE: This is an internal header and installed for use by extensions. The
* API is not guaranteed stable.
*/
// Internal defs // Internal defs
#ifndef HAMMER_BACKEND_REGEX__H #ifndef HAMMER_BACKEND_REGEX__H
#define HAMMER_BACKEND_REGEX__H #define HAMMER_BACKEND_REGEX__H

View file

@ -15,6 +15,11 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/ */
/*
* NOTE: This is an internal header and installed for use by extensions. The
* API is not guaranteed stable.
*/
#ifndef HAMMER_INTERNAL__H #ifndef HAMMER_INTERNAL__H
#define HAMMER_INTERNAL__H #define HAMMER_INTERNAL__H
#include <stdint.h> #include <stdint.h>

View file

@ -1,3 +1,8 @@
/*
* NOTE: This is an internal header and installed for use by extensions. The
* API is not guaranteed stable.
*/
#ifndef HAMMER_PARSE_INTERNAL__H #ifndef HAMMER_PARSE_INTERNAL__H
#define HAMMER_PARSE_INTERNAL__H #define HAMMER_PARSE_INTERNAL__H
#include "../hammer.h" #include "../hammer.h"