re-mark 1.29b-2 as not yet uploaded (merge madness!)
[debian/tar] / gnu / unlockpt.c
1 /* -*- buffer-read-only: t -*- vi: set ro: */
2 /* DO NOT EDIT! GENERATED AUTOMATICALLY! */
3 /* Unlock the slave side of a pseudo-terminal from its master side.
4    Copyright (C) 1998, 2010-2014 Free Software Foundation, Inc.
5    Contributed by Zack Weinberg <zack@rabi.phys.columbia.edu>, 1998.
6
7    This program is free software: you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 3 of the License, or
10    (at your option) any later version.
11
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
19
20 #include <config.h>
21
22 #include <stdlib.h>
23
24 #include <fcntl.h>
25 #include <unistd.h>
26
27 int
28 unlockpt (int fd)
29 {
30   /* Platforms which have the TIOCSPTLCK ioctl (Linux) already have the
31      unlockpt function.  */
32 #if HAVE_REVOKE
33   /* Mac OS X 10.3, OpenBSD 3.8 do not have the unlockpt function, but they
34      have revoke().  */
35   char *name = ptsname (fd);
36   if (name == NULL)
37     return -1;
38   return revoke (name);
39 #else
40   /* Assume that the slave side of a pseudo-terminal is already unlocked
41      by default.  */
42   if (fcntl (fd, F_GETFD) < 0)
43     return -1;
44   return 0;
45 #endif
46 }