util/nvmutil: move includes to nvmutil.h
Signed-off-by: Leah Rowe <leah@libreboot.org>fsdg20230625
parent
2dabafe691
commit
f0846134b7
|
@ -1,18 +1,6 @@
|
||||||
/* Copyright (c) 2022, 2023 Leah Rowe <info@minifree.org> */
|
/* Copyright (c) 2022, 2023 Leah Rowe <info@minifree.org> */
|
||||||
/* SPDX-License-Identifier: MIT */
|
/* SPDX-License-Identifier: MIT */
|
||||||
|
|
||||||
#include <sys/stat.h>
|
|
||||||
|
|
||||||
#include <dirent.h>
|
|
||||||
#include <err.h>
|
|
||||||
#include <errno.h>
|
|
||||||
#include <fcntl.h>
|
|
||||||
#include <stdint.h>
|
|
||||||
#include <stdio.h>
|
|
||||||
#include <stdlib.h>
|
|
||||||
#include <string.h>
|
|
||||||
#include <unistd.h>
|
|
||||||
|
|
||||||
#include "nvmutil.h"
|
#include "nvmutil.h"
|
||||||
|
|
||||||
int
|
int
|
||||||
|
|
|
@ -1,6 +1,18 @@
|
||||||
/* Copyright (c) 2022, 2023 Leah Rowe <info@minifree.org> */
|
/* Copyright (c) 2022, 2023 Leah Rowe <info@minifree.org> */
|
||||||
/* SPDX-License-Identifier: MIT */
|
/* SPDX-License-Identifier: MIT */
|
||||||
|
|
||||||
|
#include <sys/stat.h>
|
||||||
|
|
||||||
|
#include <dirent.h>
|
||||||
|
#include <err.h>
|
||||||
|
#include <errno.h>
|
||||||
|
#include <fcntl.h>
|
||||||
|
#include <stdint.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <string.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
|
||||||
void readGbeFile(int *fd, const char *path, int flags,
|
void readGbeFile(int *fd, const char *path, int flags,
|
||||||
size_t nr);
|
size_t nr);
|
||||||
void cmd_setmac(const char *strMac);
|
void cmd_setmac(const char *strMac);
|
||||||
|
|
Loading…
Reference in New Issue