Skip to content

Commit

Permalink
Fix compliation of some test programs
Browse files Browse the repository at this point in the history
They refer to stderr etc. but fail to include <stdio.h>
  • Loading branch information
th-otto authored and OmniBlade committed Mar 20, 2024
1 parent 1279a01 commit 77e2da0
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions tests/face.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#include "common/face.h"

#include <stdio.h>
#include <stdint.h>
#include <iostream>

Expand Down
1 change: 1 addition & 0 deletions tests/fading.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#include "common/fading.h"

#include <stdio.h>
#include <stdint.h>
#include <string.h>
#include <iostream>
Expand Down
1 change: 1 addition & 0 deletions tests/lcw.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#include "common/lcw.h"

#include <stdio.h>
#include <stdint.h>
#include <string.h>
#include <iostream>
Expand Down
1 change: 1 addition & 0 deletions tests/rect.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#include "common/rect.h"

#include <stdio.h>
#include <cstdint>
#include <iostream>

Expand Down
1 change: 1 addition & 0 deletions tests/xordelta.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#include "common/xordelta.h"

#include <stdio.h>
#include <stdint.h>
#include <string.h>
#include <iostream>
Expand Down

0 comments on commit 77e2da0

Please sign in to comment.