ObjFW  Diff

Differences From Artifact [99ea7e8ec1]:

To Artifact [d3b2338fa7]:


15
16
17
18
19
20
21



22
23



24
 */

#import "objfw-defs.h"

#ifndef OF_HAVE_ASPRINTF
# include <stdarg.h>




extern int asprintf(char**, const char*, ...);
extern int vasprintf(char**, const char*, va_list);



#endif







>
>
>


>
>
>

15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
 */

#import "objfw-defs.h"

#ifndef OF_HAVE_ASPRINTF
# include <stdarg.h>

# ifdef __cplusplus
extern "C" {
# endif
extern int asprintf(char**, const char*, ...);
extern int vasprintf(char**, const char*, va_list);
# ifdef __cplusplus
}
# endif
#endif