diff options
| author | Garrett D'Amore <garrett@damore.org> | 2021-07-22 00:57:13 -0700 |
|---|---|---|
| committer | Garrett D'Amore <garrett@damore.org> | 2021-07-22 00:57:13 -0700 |
| commit | 9f0fcbd84a6ee3655f55629ed4b01d13647ac0c9 (patch) | |
| tree | ba850aa64c8ae94f50c093edce2ae44a6e1e7b6a /src/supplemental/util/platform.c | |
| parent | f59f322c796ac81c2dea402d0955f6d3718c7b19 (diff) | |
| download | nng-9f0fcbd84a6ee3655f55629ed4b01d13647ac0c9.tar.gz nng-9f0fcbd84a6ee3655f55629ed4b01d13647ac0c9.tar.bz2 nng-9f0fcbd84a6ee3655f55629ed4b01d13647ac0c9.zip | |
Remove extra wrapper for platform clock support.
Diffstat (limited to 'src/supplemental/util/platform.c')
| -rw-r--r-- | src/supplemental/util/platform.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/supplemental/util/platform.c b/src/supplemental/util/platform.c index 8898b680..ddc2d088 100644 --- a/src/supplemental/util/platform.c +++ b/src/supplemental/util/platform.c @@ -1,5 +1,5 @@ // -// Copyright 2020 Staysail Systems, Inc. <info@staysail.tech> +// Copyright 2021 Staysail Systems, Inc. <info@staysail.tech> // Copyright 2018 Capitar IT Group BV <info@capitar.com> // // This software is supplied under the terms of the MIT License, a @@ -18,7 +18,7 @@ nng_time nng_clock(void) { (void) nni_init(); - return (nni_plat_clock()); + return (nni_clock()); } // Sleep for specified msecs. |
