aboutsummaryrefslogtreecommitdiff
path: root/libcpp/directives.c
diff options
context:
space:
mode:
authorNathan Sidwell <nathan@acm.org>2019-05-06 11:34:47 +0000
committerNathan Sidwell <nathan@gcc.gnu.org>2019-05-06 11:34:47 +0000
commitb744fc85f549534bcbc36dedcc1659c02e16c617 (patch)
treead770fda7112e4e6883f60edd3e908f1e17eebca /libcpp/directives.c
parent1b5e2d7b9075e5050755b5aead831a09c8b998f4 (diff)
downloadgcc-b744fc85f549534bcbc36dedcc1659c02e16c617.zip
gcc-b744fc85f549534bcbc36dedcc1659c02e16c617.tar.gz
gcc-b744fc85f549534bcbc36dedcc1659c02e16c617.tar.bz2
[libcpp] struct deps renaming
https://gcc.gnu.org/ml/gcc-patches/2019-05/msg00199.html libcpp/ * include/mkdeps.h: Rename struct deps to struct mkdeps. * mkdeps.c: Likewise. * include/cpplib.h (cpp_get_deps): Rename return type.. * directives.c (cpp_get_deps): Likewise. * internal.h (struct cpp_reader): Rename deps field type. gcc/c-family/ * c-opts.c (handle_defered_opts): Rename struct deps to struc mkdeps. From-SVN: r270905
Diffstat (limited to 'libcpp/directives.c')
-rw-r--r--libcpp/directives.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libcpp/directives.c b/libcpp/directives.c
index 1ada834..3ee8bc4 100644
--- a/libcpp/directives.c
+++ b/libcpp/directives.c
@@ -2539,7 +2539,7 @@ cpp_set_callbacks (cpp_reader *pfile, cpp_callbacks *cb)
}
/* The dependencies structure. (Creates one if it hasn't already been.) */
-struct deps *
+struct mkdeps *
cpp_get_deps (cpp_reader *pfile)
{
if (!pfile->deps)