1
0
mirror of https://github.com/facebook/zstd.git synced 2025-07-29 11:21:22 +03:00

Remove unnecessary extern C declarations from programs/ and contrib/

This commit is contained in:
Victor Zhang
2024-12-19 16:20:23 -08:00
parent d0d5ce4c00
commit c727d5cd67
9 changed files with 8 additions and 58 deletions

View File

@ -26,11 +26,6 @@
typedef unsigned long long PTime; /* does not support compilers without long long support */
#endif
#if defined (__cplusplus)
extern "C" {
#endif
/* UTIL_time_t contains a nanosecond time counter.
* The absolute value is not meaningful.
* It's only valid to compute the difference between 2 measurements. */
@ -61,9 +56,4 @@ PTime UTIL_clockSpanMicro(UTIL_time_t clockStart);
#define SEC_TO_MICRO ((PTime)1000000) /* nb of microseconds in a second */
#if defined (__cplusplus)
}
#endif
#endif /* TIME_FN_H_MODULE_287987 */