File: posix.c

package info (click to toggle)
lua-posix 36.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,720 kB
  • sloc: ansic: 5,462; makefile: 21; sh: 6
file content (43 lines) | stat: -rw-r--r-- 1,132 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/*
 * POSIX library for Lua 5.1, 5.2, 5.3 & 5.4.
 * Copyright (C) 2013-2025 Gary V. Vaughan
 * Copyright (C) 2010-2013 Reuben Thomas <rrt@sc3d.org>
 * Copyright (C) 2008-2010 Natanael Copa <natanael.copa@gmail.com>
 * Clean up and bug fixes by Leo Razoumov <slonik.az@gmail.com> 2006-10-11
 * Luiz Henrique de Figueiredo <lhf@tecgraf.puc-rio.br> 07 Apr 2006 23:17:49
 * Based on original by Claudio Terra for Lua 3.x.
 * With contributions by Roberto Ierusalimschy.
 * With documentation from Steve Donovan 2012
 */
#ifdef __GNU__
#define _GNU_SOURCE
#endif

#include "ctype.c"
#include "dirent.c"
#include "errno.c"
#include "fcntl.c"
#include "fnmatch.c"
#include "glob.c"
#include "grp.c"
#include "libgen.c"
#include "poll.c"
#include "pwd.c"
#include "sched.c"
#include "signal.c"
#include "stdio.c"
#include "stdlib.c"
#include "sys/msg.c"
#include "sys/resource.c"
#include "sys/socket.c"
#include "sys/stat.c"
#include "sys/statvfs.c"
#include "sys/time.c"
#include "sys/times.c"
#include "sys/utsname.c"
#include "sys/wait.c"
#include "syslog.c"
#include "termio.c"
#include "time.c"
#include "unistd.c"
#include "utime.c"