/* Copyright (C) 2025 Mikael Hildenborg SPDX-License-Identifier: BSD-2-Clause */ #include #include <_ansi.h> #include "atari-gem_errno.h" #include "atari-traps.h" int mkdir(const char *pathname, mode_t mode) { // Ignore mode, it is not supported by the st. int result = trap1_39(pathname); if (result < 0) { gem_error_to_errno(result); return -1; } return 0; }