1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Patch to fix stdint.h missing from pre Solaris 10 versions.

This commit is contained in:
Karen Langford
2011-10-29 20:08:40 +02:00
parent 20ffbd3dd7
commit aac0319336
2 changed files with 12 additions and 0 deletions

View File

@ -47,7 +47,14 @@ static char sccsid[] = "@(#)unvis.c 8.1 (Berkeley) 6/4/93";
#include <assert.h>
#include <ctype.h>
/* XXXMYSQL : stdint.h might not be available on older Solaris platforms. */
#if defined(__sun) || defined(__sun__)
#include <sys/inttypes.h>
#else
#include <stdint.h>
#endif
#include <stdio.h>
#include <errno.h>
/*