diff options
| author | Peter Maydell <peter.maydell@linaro.org> | 2021-11-29 20:55:05 +0000 |
|---|---|---|
| committer | Peter Maydell <peter.maydell@linaro.org> | 2022-01-28 14:29:46 +0000 |
| commit | 2f93d8b04a1bcc8e0a576e35ae13c96af42634db (patch) | |
| tree | 43d1e77588ca78e05ee83d90dedcc3bfec6fca4f /include/qemu-common.h | |
| parent | 617dff091f3478db9a44320df03f74b9df0617fb (diff) | |
| download | focaccia-qemu-2f93d8b04a1bcc8e0a576e35ae13c96af42634db.tar.gz focaccia-qemu-2f93d8b04a1bcc8e0a576e35ae13c96af42634db.zip | |
rtc: Move RTC function prototypes to their own header
softmmu/rtc.c defines two public functions: qemu_get_timedate() and qemu_timedate_diff(). Currently we keep the prototypes for these in qemu-common.h, but most files don't need them. Move them to their own header, a new include/sysemu/rtc.h. Since the C files using these two functions did not need to include qemu-common.h for any other reason, we can remove those include lines when we add the include of the new rtc.h. The license for the .h file follows that of the softmmu/rtc.c where both the functions are defined. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Diffstat (limited to 'include/qemu-common.h')
| -rw-r--r-- | include/qemu-common.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/qemu-common.h b/include/qemu-common.h index 0e7e7bab95..68b2e3bc10 100644 --- a/include/qemu-common.h +++ b/include/qemu-common.h @@ -26,9 +26,6 @@ int qemu_main(int argc, char **argv, char **envp); #endif -void qemu_get_timedate(struct tm *tm, int offset); -int qemu_timedate_diff(struct tm *tm); - void *qemu_oom_check(void *ptr); ssize_t qemu_write_full(int fd, const void *buf, size_t count) |