[PR #845] include: os.h: fix extra ;

PR: https://github.com/X11Libre/xserver/pull/845
This commit is contained in:
Enrico Weigelt, metux IT consult
2025-08-29 14:50:56 +02:00
parent dd203a8ac5
commit e1aa72dd28

View File

@@ -141,7 +141,7 @@ extern _X_EXPORT void GiveUp(int /*sig */ );
* enough memory.
*/
extern _X_EXPORT void *
XNFalloc(unsigned long /*amount */ ) __attribute__((returns_nonnull));;
XNFalloc(unsigned long /*amount */ ) __attribute__((returns_nonnull));
/*
* This function calloc(3)s buffer, terminating the server if there is not
@@ -155,7 +155,7 @@ XNFcalloc(unsigned long /*amount */ ) _X_DEPRECATED;
* enough memory or the arguments overflow when multiplied
*/
extern _X_EXPORT void *
XNFcallocarray(size_t nmemb, size_t size) __attribute__((returns_nonnull));;
XNFcallocarray(size_t nmemb, size_t size) __attribute__((returns_nonnull));
/*
* This function realloc(3)s passed buffer, terminating the server if there is