summaryrefslogtreecommitdiff
path: root/LibC/sys/ioctl.h
blob: 95d69f0504b6c0c6fc96bc281a742d16ff0a3294 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once

#include <sys/cdefs.h>
#include <sys/ioctl_numbers.h>

__BEGIN_DECLS

struct winsize {
    unsigned short ws_row;
    unsigned short ws_col;
};

int ioctl(int fd, unsigned request, ...);

__END_DECLS