AAlib driver was using C runtime string functions without including string.h.

Fixes Bugzilla #131.
This commit is contained in:
Ryan C. Gordon 2006-02-02 05:35:42 +00:00
parent 30dcbc6323
commit 6d3a2c8a62

View File

@ -25,6 +25,7 @@
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <sys/stat.h>