aboutsummaryrefslogtreecommitdiff
path: root/gcc/fixinc/fixlib.h
diff options
context:
space:
mode:
authorBruce Korb <bkorb@gnu.org>2000-07-12 14:45:05 +0000
committerBruce Korb <korbb@gcc.gnu.org>2000-07-12 14:45:05 +0000
commit878a5794e087205c4072dbf4ade21eb07587de76 (patch)
tree7d2fd8091e15b04900838327a8bf2a8122c99c9e /gcc/fixinc/fixlib.h
parent2964d54fa66aceb9a7637a6c9b05e83da73fbf17 (diff)
downloadgcc-878a5794e087205c4072dbf4ade21eb07587de76.zip
gcc-878a5794e087205c4072dbf4ade21eb07587de76.tar.gz
gcc-878a5794e087205c4072dbf4ade21eb07587de76.tar.bz2
removed dinkleberries and use xmalloc instead of a private version
From-SVN: r34986
Diffstat (limited to 'gcc/fixinc/fixlib.h')
-rw-r--r--gcc/fixinc/fixlib.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/gcc/fixinc/fixlib.h b/gcc/fixinc/fixlib.h
index 5cbf412..9997553 100644
--- a/gcc/fixinc/fixlib.h
+++ b/gcc/fixinc/fixlib.h
@@ -31,6 +31,7 @@ Boston, MA 02111-1307, USA. */
#include "gnu-regex.h"
#include "machname.h"
+#include "libiberty.h"
#ifndef STDIN_FILENO
# define STDIN_FILENO 0
@@ -152,10 +153,14 @@ struct fix_desc
* Exported procedures
*/
char * load_file_data _P_(( FILE* fp ));
+#ifdef IS_CXX_HEADER_NEEDED
t_bool is_cxx_header _P_(( tCC* filename, tCC* filetext ));
+#endif /* IS_CXX_HEADER_NEEDED */
+#ifdef SKIP_QUOTE_NEEDED
+tCC* skip_quote _P_(( char q, char* text ));
+#endif
void compile_re _P_(( tCC* pat, regex_t* re, int match,
tCC *e1, tCC *e2 ));
-void* must_malloc _P_(( size_t ));
void apply_fix _P_(( tFixDesc* p_fixd, tCC* filname ));
apply_fix_p_t run_test _P_((tCC* t_name, tCC* f_name, tCC* text ));