mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-02-21 02:40:56 +00:00
Add todo about util_vasprintf (too lazy to fix right now)
This commit is contained in:
parent
1182ab55c5
commit
f4c3080824
1 changed files with 2 additions and 0 deletions
2
util.c
2
util.c
|
@ -576,6 +576,8 @@ void util_htdel(hash_table_t *ht) {
|
|||
/*
|
||||
* Portable implementation of vasprintf/asprintf. Assumes vsnprintf
|
||||
* exists, otherwise compiler error.
|
||||
*
|
||||
* TODO: fix for MSVC ....
|
||||
*/
|
||||
int util_vasprintf(char **ret, const char *fmt, va_list args) {
|
||||
int read;
|
||||
|
|
Loading…
Reference in a new issue