You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
pgdbf.c: In function ‘main’:
pgdbf.c:571:16: warning: implicit declaration of function ‘asprintf’; did you mean ‘vsprintf’? [-Wimplicit-function-declaration]
if(asprintf(&pgfields[fieldnum].formatstring, "%%.%dlf", fields[fieldnum].decimals) < 0) {
^~~~~~~~
vsprintf
The man-page details the need to set a feature test macro:
#define _GNU_SOURCE /* See feature_test_macros(7) */
#include <stdio.h>
The text was updated successfully, but these errors were encountered:
On Ubuntu 18.04 compiling reports:
The man-page details the need to set a feature test macro:
The text was updated successfully, but these errors were encountered: