IBM / portlibfori

A set of APIs to enable applications to be more easily ported to PASE on IBM i
Other
8 stars 7 forks source link

fix: asprint.c build error #25

Closed abmusse closed 2 years ago

abmusse commented 2 years ago

Currently the build fails with the following

util/asprintf.c: In function 'libutil_asprintf':
util/asprintf.c:38:7: warning: implicit declaration of function 'vasprintf' [-Wimplicit-function-declaration]
   r = vasprintf(ret, format, args);
       ^~~~~~~~~

Now we just make libutil_asprintf call libutil_vasprintf.