mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-01-09 13:37:58 -05:00
8 lines
202 B
C
8 lines
202 B
C
#ifndef TOOLS_MKPATH_H_
|
|
#define TOOLS_MKPATH_H_
|
|
|
|
// mkdir -p, from https://gist.github.com/JonathonReinhart/8c0d90191c38af2dcadb102c4e202950
|
|
int mkdir_p(const char *path);
|
|
|
|
#endif /* TOOLS_MKPATH_H_ */
|