aboutsummaryrefslogtreecommitdiff
path: root/stand/kboot/arch/aarch64/stat_arch.h
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2024-01-28 18:05:05 +0000
committerWarner Losh <imp@FreeBSD.org>2024-01-28 20:04:31 +0000
commit091c255b5b279fddf445a42dd7d0bad0e7c213fd (patch)
tree72c3c312286dd2cf168b6f21d3e923a0ca1ce16b /stand/kboot/arch/aarch64/stat_arch.h
parentdcc20bced51583df83e49af269ff7be5fb48dbf8 (diff)
downloadsrc-091c255b5b279fddf445a42dd7d0bad0e7c213fd.tar.gz
src-091c255b5b279fddf445a42dd7d0bad0e7c213fd.zip
kboot: Move to kboot/kboot
In anticipation of separating the library elements from the kboot prorgam elements, move kboot down a level into a subdirectory. There will be libkboot and include directories in subsequent commits, mirroring other subsystems like i386 and efi. Sponsored by: Netflix
Diffstat (limited to 'stand/kboot/arch/aarch64/stat_arch.h')
-rw-r--r--stand/kboot/arch/aarch64/stat_arch.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/stand/kboot/arch/aarch64/stat_arch.h b/stand/kboot/arch/aarch64/stat_arch.h
deleted file mode 100644
index 9b52fe60c449..000000000000
--- a/stand/kboot/arch/aarch64/stat_arch.h
+++ /dev/null
@@ -1,31 +0,0 @@
-/*
- * Copyright (c) 2005-2020 Rich Felker, et al.
- *
- * SPDX-License-Identifier: MIT
- *
- * Note: From the musl project
- */
-
-typedef int host_nlink_t;
-
-struct host_kstat {
- host_dev_t st_dev;
- host_ino_t st_ino;
- host_mode_t st_mode;
- host_nlink_t st_nlink;
- host_uid_t st_uid;
- host_gid_t st_gid;
- host_dev_t st_rdev;
- unsigned long __pad;
- host_off_t st_size;
- host_blksize_t st_blksize;
- int __pad2;
- host_blkcnt_t st_blocks;
- long st_atime_sec;
- long st_atime_nsec;
- long st_mtime_sec;
- long st_mtime_nsec;
- long st_ctime_sec;
- long st_ctime_nsec;
- unsigned __pad_for_future[2];
-};