public inbox for newlib-cvs@sourceware.org
help / color / mirror / Atom feed
* [newlib-cygwin] Fix missing extern C statement
@ 2022-09-26 17:49 Jeff Johnston
  0 siblings, 0 replies; only message in thread
From: Jeff Johnston @ 2022-09-26 17:49 UTC (permalink / raw)
  To: newlib-cvs

https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=01f6251c0969f92bf802e1c9f2acd199353a3956

commit 01f6251c0969f92bf802e1c9f2acd199353a3956
Author: Markus B. Moessner <kho237115@gmx.de>
Date:   Mon Sep 26 19:20:08 2022 +0200

    Fix missing extern C statement

Diff:
---
 newlib/libc/include/sys/resource.h | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/newlib/libc/include/sys/resource.h b/newlib/libc/include/sys/resource.h
index b99506bd8..c0a0d2019 100644
--- a/newlib/libc/include/sys/resource.h
+++ b/newlib/libc/include/sys/resource.h
@@ -1,6 +1,10 @@
 #ifndef _SYS_RESOURCE_H_
 #define _SYS_RESOURCE_H_
 
+#ifdef __cplusplus
+extern "C" {
+#endif
+
 #include <sys/time.h>
 
 #define	RUSAGE_SELF	0		/* calling process */
@@ -13,5 +17,8 @@ struct rusage {
 
 int	getrusage (int, struct rusage*);
 
+#ifdef __cplusplus
+}
 #endif
+#endif /* !_SYS_RESOURCE_H_ */

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2022-09-26 17:49 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-26 17:49 [newlib-cygwin] Fix missing extern C statement Jeff Johnston

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).