/* Copyright(c) 1986 Association of Universities for Research in Astronomy Inc. */ #define import_spp #define import_libc #define import_xnames #include /* C_FMKDIR -- FIO procedure to create a new directory. */ int c_fmkdir (newdir) char *newdir; /* name of the new directory */ { iferr (FMKDIR (c_sppstr(newdir))) return (ERR); else return (OK); }