Mercurial > hg > octave-lyh
comparison src/toplev.h @ 206:1761d7a3770c
[project @ 1993-11-10 21:00:31 by jwe]
author | jwe |
---|---|
date | Wed, 10 Nov 1993 21:00:31 +0000 |
parents | 13c6086c325c |
children | 260863721a51 |
comparison
equal
deleted
inserted
replaced
205:76fa9345e0dc | 206:1761d7a3770c |
---|---|
25 #define _octave_h 1 | 25 #define _octave_h 1 |
26 | 26 |
27 #include <stdio.h> | 27 #include <stdio.h> |
28 | 28 |
29 class tree; | 29 class tree; |
30 class tree_function; | |
30 | 31 |
31 // Tell g++ that clean_up_and_exit doesn't return; | 32 // Tell g++ that clean_up_and_exit doesn't return; |
32 | 33 |
33 #ifdef __GNUG__ | 34 #ifdef __GNUG__ |
34 typedef void v_fcn_i (int); | 35 typedef void v_fcn_i (int); |
76 extern int quitting_gracefully; | 77 extern int quitting_gracefully; |
77 | 78 |
78 // Current command to execute. | 79 // Current command to execute. |
79 extern tree *global_command; | 80 extern tree *global_command; |
80 | 81 |
82 // Pointer to function that is currently being evaluated. | |
83 extern tree_function *curr_function; | |
84 | |
81 #endif | 85 #endif |
82 | 86 |
83 /* | 87 /* |
84 ;;; Local Variables: *** | 88 ;;; Local Variables: *** |
85 ;;; mode: C++ *** | 89 ;;; mode: C++ *** |