upstream commit

Include stdint.h, not limits.h to get SIZE_MAX.  OK guenther@
This commit is contained in:
millert@openbsd.org 2015-02-05 12:59:57 +00:00 committed by Damien Miller
parent ce4f59b240
commit 1910a286d7
1 changed files with 2 additions and 1 deletions

View File

@ -1,4 +1,4 @@
/* $OpenBSD: sshbuf-misc.c,v 1.2 2014/06/24 01:13:21 djm Exp $ */
/* $OpenBSD: sshbuf-misc.c,v 1.3 2015/02/05 12:59:57 millert Exp $ */
/*
* Copyright (c) 2011 Damien Miller
*
@ -22,6 +22,7 @@
#include <netinet/in.h>
#include <errno.h>
#include <stdlib.h>
#include <stdint.h>
#include <stdio.h>
#include <limits.h>
#include <string.h>