(main): Use dir_name rather than the underlying dir_name_r.
The former now handles cwd-relative names with drive-letter prefixes.
#include "error.h"
#include "dirname.h"
#include "closeout.h"
+#include "xalloc.h"
/* The official name of this program (e.g., no `g' prefix). */
#define PROGRAM_NAME "dirname"
usage (1);
}
- len = dir_name_r (argv[1], &result);
- fwrite (result, 1, len, stdout);
- putchar ('\n');
+ result = dir_name (argv[1]);
+ if (result == NULL)
+ xalloc_die ();
+ puts (result);
+ free (result);
exit (0);
}