lst-0968-godb.cpp
//#(execute) c++; compiler:g132; options:-O3 -std=c++23; libs:-
// https://godbolt.org/z/n4v78WWod
#include <system_error>
#include <string>
void create_dir(const std::string& pathname, std::error_code& ec) {
#if defined(_WIN32)
// Windows-Implementierung, mit Windows-Fehlercodes
#elif defined(linux)
// Linux-Implementierung, mit Linux-Fehlercodes
#else
// allgemeingültiger 'generischer' Fall
ec = std::make_error_code(std::errc::not_supported);
#endif
}