[PR #1355] os: make XNFvasprintf() static

PR: https://github.com/X11Libre/xserver/pull/1355
This commit is contained in:
Enrico Weigelt, metux IT consult
2025-11-06 17:26:30 +01:00
parent e9c8cb8f3f
commit e3d86ea9ed
2 changed files with 4 additions and 4 deletions

View File

@@ -53,8 +53,5 @@
extern _X_EXPORT int /* deprecated */
XNFasprintf(char **ret, const char *_X_RESTRICT_KYWD fmt, ...)
_X_ATTRIBUTE_PRINTF(2, 3);
extern _X_EXPORT int
XNFvasprintf(char **ret, const char *_X_RESTRICT_KYWD fmt, va_list va)
_X_ATTRIBUTE_VPRINTF(2, 0);
#endif /* XPRINTF_H */

View File

@@ -67,6 +67,9 @@
#include "include/os.h"
#include "include/Xprintf.h"
static int XNFvasprintf(char **ret, const char *_X_RESTRICT_KYWD fmt, va_list va)
_X_ATTRIBUTE_PRINTF(2, 0);
/**
* Varargs sprintf that allocates a string buffer the right size for
* the pattern & data provided and prints the requested data to it.
@@ -78,7 +81,7 @@
* @param va variable argument list
* @return size of allocated buffer
*/
int
static int
XNFvasprintf(char **ret, const char *_X_RESTRICT_KYWD format, va_list va)
{
int size = vasprintf(ret, format, va);