Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add missing headers for C99 compilation #7

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions bb.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
#include <stdlib.h>
#include <ctype.h>
#include <aalib.h>
#include <time.h>
#include "bb.h"

int finish_stuff, starttime, endtime;
Expand Down
2 changes: 1 addition & 1 deletion messager.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* with this program; if not, write to the Free Software Foundation, Inc.
* 675 Mass Ave, Cambridge, MA 02139, USA.
*/

#include <stdlib.h>
#include <string.h>
#include "bb.h"

Expand Down
2 changes: 1 addition & 1 deletion scene5.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* with this program; if not, write to the Free Software Foundation, Inc.
* 675 Mass Ave, Cambridge, MA 02139, USA.
*/

#include <stdlib.h>
#include <string.h>
#include <math.h>
#include "bb.h"
Expand Down
2 changes: 1 addition & 1 deletion scene8.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* with this program; if not, write to the Free Software Foundation, Inc.
* 675 Mass Ave, Cambridge, MA 02139, USA.
*/

#include <stdlib.h>
#include <math.h>
#include "bb.h"
#define STATE1 (TIME-starttime1)
Expand Down
1 change: 1 addition & 0 deletions textform.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
#include <string.h>
#include <aalib.h>
#include "bb.h"
#include <stdlib.h>
#define MAXLINES 10000
static char *text = "#cWell we've reached the end of this demo. But #bnot#n the #bREAL END#n because\n\n"
"#bAA PROJECT#n is here. \n\n"
Expand Down
1 change: 1 addition & 0 deletions timers.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
*
* All ugly architecture depended timing code is separated into this file..
*/
#include <stdlib.h>
#ifdef _plan9_
#include <u.h>
#include <stdio.h>
Expand Down
2 changes: 1 addition & 1 deletion uncompfn.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* with this program; if not, write to the Free Software Foundation, Inc.
* 675 Mass Ave, Cambridge, MA 02139, USA.
*/

#include <stdlib.h>
#include <aalib.h>
#include "bb.h"

Expand Down