mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 23:04:20 +01:00
2a1e0d1618
git-svn-id: file:///svn/toku/tokudb.1032b@8109 c7de825b-a66e-492c-adef-691d508d4ae1
20 lines
311 B
C
20 lines
311 B
C
#ifndef _TOKU_STDLIB_H
|
|
#define _TOKU_STDLIB_H
|
|
|
|
#include <stdlib.h>
|
|
|
|
#if defined(__cplusplus)
|
|
extern "C" {
|
|
#endif
|
|
|
|
long int random(void);
|
|
void srandom(unsigned int seed);
|
|
|
|
int unsetenv(const char *name);
|
|
int setenv(const char *name, const char *value, int overwrite);
|
|
|
|
#if defined(__cplusplus)
|
|
};
|
|
#endif
|
|
|
|
#endif
|