mirror of
https://github.com/facebook/zstd
synced 2026-08-22 22:32:07 -04:00
Remove unnecessary extern C declarations from programs/ and contrib/
This commit is contained in:
parent
d0d5ce4c00
commit
c727d5cd67
9 changed files with 8 additions and 58 deletions
|
|
@ -14,6 +14,10 @@
|
|||
|
||||
#include <stddef.h> /* size_t */
|
||||
|
||||
#if defined (__cplusplus)
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
void RDG_genStdout(unsigned long long size, double matchProba, double litProba, unsigned seed);
|
||||
void RDG_genBuffer(void* buffer, size_t size, double matchProba, double litProba, unsigned seed);
|
||||
/*!RDG_genBuffer
|
||||
|
|
@ -27,4 +31,8 @@ void RDG_genBuffer(void* buffer, size_t size, double matchProba, double litProba
|
|||
Same as RDG_genBuffer, but generates data into stdout
|
||||
*/
|
||||
|
||||
#if defined (__cplusplus)
|
||||
} /* extern "C" */
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue