0

We use WSDLParser tool to parse our xml content, till Xcode 9.2 everything was ok. As we shifted to Xcode 9.3, we are getting this error in one of parser file "Implicit declaration of function 'xmlFree' is invalid in C99".

Kishore R
  • 7
  • 3

1 Answers1

4

The declaration was moved to globals.h, it should compile with this import:

#import <libxml/globals.h>
MohammadAG
  • 465
  • 1
  • 3
  • 9