summaryrefslogtreecommitdiff
path: root/ACE/ace/OS_NS_stdlib.h
diff options
context:
space:
mode:
authorFred Hornsey <hornseyf@objectcomputing.com>2020-12-30 15:37:43 -0600
committerFred Hornsey <hornseyf@objectcomputing.com>2020-12-30 15:37:43 -0600
commit0abdfa780d82131fc95ebd64d2d01ce29e486a61 (patch)
treec6a6ffedad3984004630eae4111b83969b876930 /ACE/ace/OS_NS_stdlib.h
parent8e8b8b521d4d5723abebfaf415e9524cf57fe131 (diff)
parenta41ee6065f5383d1493c17ddf9cfba05abbffb96 (diff)
downloadATCD-0abdfa780d82131fc95ebd64d2d01ce29e486a61.tar.gz
Merge remote-tracking branch 'upstream/master' into igtd/cpp11-noreturn
Diffstat (limited to 'ACE/ace/OS_NS_stdlib.h')
-rw-r--r--ACE/ace/OS_NS_stdlib.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ACE/ace/OS_NS_stdlib.h b/ACE/ace/OS_NS_stdlib.h
index ffa10c25680..4e0e4442eeb 100644
--- a/ACE/ace/OS_NS_stdlib.h
+++ b/ACE/ace/OS_NS_stdlib.h
@@ -103,7 +103,7 @@ namespace ACE_OS {
void _exit [[noreturn]] (int status = 0);
ACE_NAMESPACE_INLINE_FUNCTION
- void abort [[noreturn]] (void);
+ void abort [[noreturn]] ();
/**
* Register an at exit hook. The @a name can be used to analyze shutdown
@@ -195,7 +195,7 @@ namespace ACE_OS {
// not in spec
extern ACE_Export
- ACE_TCHAR *getenvstrings (void);
+ ACE_TCHAR *getenvstrings ();
// itoa not in spec
/// Converts an integer to a string.
@@ -276,7 +276,7 @@ namespace ACE_OS {
int unsetenv(const char *name);
ACE_NAMESPACE_INLINE_FUNCTION
- int rand (void);
+ int rand ();
ACE_NAMESPACE_INLINE_FUNCTION
int rand_r (unsigned int *seed);