Skip to content

Commit

Permalink
remove extraneous stdio includes
Browse files Browse the repository at this point in the history
  • Loading branch information
Traneptora committed Mar 22, 2023
1 parent 07ea6b0 commit 90c846f
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 6 deletions.
2 changes: 0 additions & 2 deletions libhydrium/encoder.c
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@
#include "math-functions.h"
#include "xyb.h"

#include <stdio.h>

typedef struct IntPos {
uint8_t x, y;
} IntPos;
Expand Down
2 changes: 0 additions & 2 deletions libhydrium/libhydrium.c
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@
#include <stdlib.h>
#include <string.h>

#include <stdio.h>

#include "internal.h"

static void *hyd_alloc(size_t size, void *opaque) {
Expand Down
2 changes: 0 additions & 2 deletions libhydrium/xyb.c
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
#include "math-functions.h"
#include "xyb.h"

#include <stdio.h>

static int64_t linearize(const int64_t srgb) {
if (srgb <= 2650)
return (srgb * UINT64_C(332427809)) >> 32;
Expand Down

0 comments on commit 90c846f

Please sign in to comment.