Commit 0c539b47 by Douglas B Rupp Committed by Douglas Rupp

cpplib.h (INO_T_CPP): New macro.


	* libcpp/include/cpplib.h (INO_T_CPP): New macro.
	(struct cpp_dir): Use it.

From-SVN: r150131
parent b303ef51
2009-07-27 Douglas B Rupp <rupp@gnat.com>
* include/cpplib.h (INO_T_CPP): New macro.
(struct cpp_dir): Use it.
2009-07-20 Jerry Quinn <jlquinn@optonline.net>
PR regression/40800
......
......@@ -505,6 +505,12 @@ struct cpp_callbacks
void (*before_define) (cpp_reader *);
};
#ifdef VMS
#define INO_T_CPP ino_t ino[3]
#else
#define INO_T_CPP ino_t ino
#endif
/* Chain of directories to look for include files in. */
struct cpp_dir
{
......@@ -538,7 +544,7 @@ struct cpp_dir
/* The C front end uses these to recognize duplicated
directories in the search path. */
ino_t ino;
INO_T_CPP;
dev_t dev;
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment