Assign more suitable types and fix narrowing conversion warns.
[tinc] / src / script.h
index 2e26418..381f952 100644 (file)
@@ -1,3 +1,6 @@
+#ifndef TINC_SCRIPT_H
+#define TINC_SCRIPT_H
+
 /*
     script.h -- header file for script.c
     Copyright (C) 1999-2005 Ivo Timmermans,
@@ -18,8 +21,7 @@
     51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */
 
-#ifndef __TINC_SCRIPT_H__
-#define __TINC_SCRIPT_H__
+#include "system.h"
 
 typedef struct environment {
        int n;
@@ -28,11 +30,10 @@ typedef struct environment {
 } environment_t;
 
 extern int environment_add(environment_t *env, const char *format, ...);
-extern int environment_placeholder(environment_t *env);
 extern void environment_update(environment_t *env, int pos, const char *format, ...);
 extern void environment_init(environment_t *env);
 extern void environment_exit(environment_t *env);
 
 extern bool execute_script(const char *name, environment_t *env);
 
-#endif /* __TINC_SCRIPT_H__ */
+#endif