gccrs: libproc_macro: Change proc_macro.h to main header

Add different include directives to the proc_macro header in order to
create an handy header much alike rust-system.

libgrust/ChangeLog:

	* libproc_macro/proc_macro.h: Add Literal, Punct,
	Group, TokenTree and Tokenstream headers.

Signed-off-by: Pierre-Emmanuel Patry <pierre-emmanuel.patry@embecosm.com>
This commit is contained in:
Pierre-Emmanuel Patry 2023-04-27 10:09:01 +02:00 committed by Arthur Cohen
parent 71180a9eed
commit ba534efbc0

View File

@ -24,5 +24,10 @@
#define PROC_MACRO_H
#include "literal.h"
#include "tokenstream.h"
#include "tokentree.h"
#include "group.h"
#include "punct.h"
#include "ident.h"
#endif /* ! PROC_MACRO_H */