libutil: Wrap pty.h in __{BEGIN,END}_DECLS
authorFredrik Fornwall <fredrik@fornwall.net>
Sat, 10 Oct 2015 01:42:22 +0000 (21:42 -0400)
committerFredrik Fornwall <fredrik@fornwall.net>
Sat, 10 Oct 2015 01:42:22 +0000 (21:42 -0400)
packages/libutil/build.sh
packages/libutil/pty.h

index 5640a57..1f1a73f 100644 (file)
@@ -1,6 +1,6 @@
 TERMUX_PKG_HOMEPAGE=https://refspecs.linuxbase.org/LSB_2.1.0/LSB-generic/LSB-generic/libutil.html
 TERMUX_PKG_DESCRIPTION="Library with terminal functions"
-TERMUX_PKG_VERSION=0.1
+TERMUX_PKG_VERSION=0.2
 TERMUX_PKG_BUILD_IN_SRC=yes
 
 termux_step_make_install () {
index 899e17d..832c4e9 100644 (file)
@@ -1,12 +1,17 @@
 #ifndef _PTY_H
 #define _PTY_H
 
+#include <sys/cdefs.h>
 #include <termios.h>
 
+__BEGIN_DECLS
+
 int openpty(int* amaster, int* aslave, char* name, struct termios* termp, struct winsize* winp);
 
 int login_tty(int fd);
 
 int forkpty(int* amaster, char* name, struct termios* termp, struct winsize* winp);
 
+__END_DECLS
+
 #endif