historical/toontown-classic.git/panda/include/parser-inc/unistd.h

11 lines
162 B
C
Raw Normal View History

2024-01-16 11:20:27 -06:00
#pragma once
#include <stdio.h>
#define STDIN_FILENO 0
#define STDOUT_FILENO 1
#define STDERR_FILENO 2
extern char *optarg;
extern int optind, opterr, optopt;