]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/blob - io/init.h
xfs: convert to new timestamp accessors
[thirdparty/xfsprogs-dev.git] / io / init.h
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * Copyright (c) 2003-2005 Silicon Graphics, Inc.
4 * All Rights Reserved.
5 */
6
7 #define CMD_NOFILE_OK (1<<0) /* command doesn't need an open file */
8 #define CMD_NOMAP_OK (1<<1) /* command doesn't need a mapped region */
9 #define CMD_FOREIGN_OK CMD_FLAG_FOREIGN_OK
10
11 extern char *progname;
12 extern int exitcode;
13 extern int expert;
14 extern size_t pagesize;
15 extern struct timeval stopwatch;
16
17 extern void init_cvtnum(size_t *blocksize, size_t *sectsize);