Merge "riscv64 <sys/user.h>."

This commit is contained in:
Elliott Hughes 2022-10-10 16:36:10 +00:00 committed by Gerrit Code Review
commit 5b2552a030

View file

@ -26,8 +26,7 @@
* SUCH DAMAGE.
*/
#ifndef _SYS_USER_H_
#define _SYS_USER_H_
#pragma once
#include <sys/cdefs.h>
#include <stddef.h> /* For size_t. */
@ -233,6 +232,11 @@ struct user_fpsimd_struct {
uint32_t fpcr;
};
#elif defined(__riscv)
// This space deliberately left blank for now.
// No other libcs have any riscv64-specific structs.
#else
#error "Unsupported architecture."
@ -240,5 +244,3 @@ struct user_fpsimd_struct {
#endif
__END_DECLS
#endif /* _SYS_USER_H_ */