4d7de91f9e
newfs(8), and mount(8) that mimics the command line option set of the deprecated mount_mfs(8). Approved by: jkh, phk, -hackers
11 lines
248 B
C
11 lines
248 B
C
/* $FreeBSD$ */
|
|
#ifndef MDMFS_PATHNAMES_H
|
|
#define MDMFS_PATHNAMES_H
|
|
|
|
#define PATH_MDCONFIG "/sbin/mdconfig"
|
|
#define PATH_DISKLABEL "/sbin/disklabel"
|
|
#define PATH_NEWFS "/sbin/newfs"
|
|
#define PATH_MOUNT "/sbin/mount"
|
|
|
|
#endif /* !MDMFS_PATHNAMES_H */
|