1 /* SPDX-License-Identifier: Apache-2.0 */ 2 /* Copyright (C) 2018 IBM Corp. */ 3 4 #ifndef TEST_SYSTEM_H 5 #define TEST_SYSTEM_H 6 7 #include <stdint.h> 8 9 void system_set_reserved_size(uint32_t size); 10 void system_set_mtd_sizes(uint32_t size, uint32_t erasesize); 11 12 #endif /* TEST_SYSTEM_H */ 13