OpenKMIP / libkmip

A C implementation of the KMIP specification.
Other
38 stars 25 forks source link

Added stdio include to kmip.h #59

Closed PircDef closed 3 years ago

PircDef commented 3 years ago

This error occurs many times during make when using kmip.h:

kmip.h:1490:24: error: unknown type name ‘FILE’;

Added stdio.h to the header to fix this problem.

PeterHamilton commented 3 years ago

@PircDef Thanks for filing this. I've never seen this error, but on looking through the other source files in libkmip it does look like I consistently include stdio.h before ever including kmip.h, so it must have just slipped on by. Merging this now.