diff options
Diffstat (limited to 'include/lib/semihosting.h')
-rw-r--r-- | include/lib/semihosting.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/lib/semihosting.h b/include/lib/semihosting.h index eb7c4c3b3..006c7b750 100644 --- a/include/lib/semihosting.h +++ b/include/lib/semihosting.h @@ -4,8 +4,8 @@ * SPDX-License-Identifier: BSD-3-Clause */ -#ifndef __SEMIHOSTING_H__ -#define __SEMIHOSTING_H__ +#ifndef SEMIHOSTING_H +#define SEMIHOSTING_H #include <stdint.h> #include <stdio.h> /* For ssize_t */ @@ -55,4 +55,4 @@ void semihosting_write_char(char character); void semihosting_write_string(char *string); char semihosting_read_char(void); -#endif /* __SEMIHOSTING_H__ */ +#endif /* SEMIHOSTING_H */ |