summaryrefslogtreecommitdiff
path: root/src/sp_execute.h
diff options
context:
space:
mode:
authorjvoisin2017-11-29 11:36:57 +0100
committerGitHub2017-11-29 11:36:57 +0100
commit10437787b0e8ede80976de4a1c22775fc1282f36 (patch)
tree1ab911ab000989b98449475eda655a797e278049 /src/sp_execute.h
parent8df77884f38e7a7334b56aafe2f441567f175af8 (diff)
Implement eval hooking
It's not possible to hook the `eval` builtin like other functions.
Diffstat (limited to 'src/sp_execute.h')
-rw-r--r--src/sp_execute.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/sp_execute.h b/src/sp_execute.h
index 8345736..6ef50ee 100644
--- a/src/sp_execute.h
+++ b/src/sp_execute.h
@@ -2,5 +2,6 @@
2#define SP_EXECUTE_H 2#define SP_EXECUTE_H
3 3
4int hook_execute(void); 4int hook_execute(void);
5char *get_eval_filename(const char *filename);
5 6
6#endif /* SP_EXECUTE_H */ 7#endif /* SP_EXECUTE_H */