; fmkdir.asm — modular dev build entry point
; This is a stub that delegates to the unified build for mkdir.
; For development, use: nasm -f bin fmkdir_unified.asm -o fmkdir
section .text
global _start
extern asm_write, asm_write_stdout, asm_write_err, asm_exit
extern asm_strlen
_start:
; Stub: actual implementation is in fmkdir_unified.asm
mov rdi, 0
mov rax, 60
syscall