summaryrefslogtreecommitdiffhomepage
path: root/stream.h
blob: 5762bc883835a8d86bd20fc9c5f3ca7d48a1b575 (plain)
1
2
3
4
5
6
7
8
9
10
#pragma once

#include <lua.h>

struct stream
{
	int fd;
};

int stream_push_new(lua_State *, const int);