summary refs log tree commit diff stats
path: root/include/qemu/envlist.h
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2023-01-10 09:19:31 +0100
committerPaolo Bonzini <pbonzini@redhat.com>2023-02-10 14:12:06 +0100
commitd76aa73fad1f64c192856e1420ad0756f5e3b778 (patch)
treedcc9592f942d81a16f10cf433fa748f532015e85 /include/qemu/envlist.h
parent808d15b383fecb3ec540186f68767a211c756c5a (diff)
downloadfocaccia-qemu-d76aa73fad1f64c192856e1420ad0756f5e3b778.tar.gz
focaccia-qemu-d76aa73fad1f64c192856e1420ad0756f5e3b778.zip
remove unnecessary extern "C" blocks
A handful of header files in QEMU are wrapped with extern "C" blocks.
These are not necessary: there are C++ source files anymore in QEMU,
and even where there were some, they did not include most of these
files anyway.

Remove them for consistency.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'include/qemu/envlist.h')
-rw-r--r--include/qemu/envlist.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/include/qemu/envlist.h b/include/qemu/envlist.h
index b9addcc11f..6006dfae44 100644
--- a/include/qemu/envlist.h
+++ b/include/qemu/envlist.h
@@ -1,10 +1,6 @@
 #ifndef ENVLIST_H
 #define ENVLIST_H
 
-#ifdef __cplusplus
-extern "C" {
-#endif
-
 typedef struct envlist envlist_t;
 
 envlist_t *envlist_create(void);
@@ -15,8 +11,4 @@ int envlist_parse_set(envlist_t *, const char *);
 int envlist_parse_unset(envlist_t *, const char *);
 char **envlist_to_environ(const envlist_t *, size_t *);
 
-#ifdef __cplusplus
-}
-#endif
-
 #endif /* ENVLIST_H */