Skip to content
Open
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
7 changes: 7 additions & 0 deletions src/zzat.c
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,13 @@ typedef int ssize_t;
#include <stdio.h>
#include <string.h>

#if defined HAVE__IO_GETC
/* This function is no longer declared in glibc header files, but
still available for linking (as of glibc 2.36). It is an alias of
getc. */
extern int _IO_getc (FILE *);
#endif

#include "util/getopt.h"

static int run(char const *sequence, char const *file);
Expand Down