summaryrefslogtreecommitdiff
path: root/libwaitress/src
diff options
context:
space:
mode:
Diffstat (limited to 'libwaitress/src')
-rw-r--r--libwaitress/src/main.c3
-rw-r--r--libwaitress/src/waitress.h4
2 files changed, 5 insertions, 2 deletions
diff --git a/libwaitress/src/main.c b/libwaitress/src/main.c
index cc06ec6..545aa0a 100644
--- a/libwaitress/src/main.c
+++ b/libwaitress/src/main.c
@@ -21,6 +21,9 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/
+#define _POSIX_C_SOURCE 1 /* required by getaddrinfo() */
+#define _BSD_SOURCE /* snprintf() */
+
#include <sys/types.h>
#include <sys/socket.h>
#include <netdb.h>
diff --git a/libwaitress/src/waitress.h b/libwaitress/src/waitress.h
index d8c379d..0dab545 100644
--- a/libwaitress/src/waitress.h
+++ b/libwaitress/src/waitress.h
@@ -64,8 +64,8 @@ void WaitressSetProxy (WaitressHandle_t *, const char *, const char *);
char *WaitressUrlEncode (const char *);
char WaitressSplitUrl (const char *, char *, size_t, char *, size_t, char *,
size_t);
-inline char WaitressSetUrl (WaitressHandle_t *, const char *);
-inline void WaitressSetHPP (WaitressHandle_t *, const char *, const char *,
+char WaitressSetUrl (WaitressHandle_t *, const char *);
+void WaitressSetHPP (WaitressHandle_t *, const char *, const char *,
const char *);
WaitressReturn_t WaitressFetchBuf (WaitressHandle_t *, char **);
WaitressReturn_t WaitressFetchCall (WaitressHandle_t *);