imapext-2007

view src/osdep/unix/os_hpp.c @ 0:ada5e610ab86

imap-2007e
author yuuji@gentei.org
date Mon, 14 Sep 2009 15:17:45 +0900
parents
children
line source
1 /* ========================================================================
2 * Copyright 1988-2007 University of Washington
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 *
11 * ========================================================================
12 */
14 /*
15 * Program: Operating-system dependent routines -- HP/UX version
16 *
17 * Author: Mark Crispin
18 * Networks and Distributed Computing
19 * Computing & Communications
20 * University of Washington
21 * Administration Building, AG-44
22 * Seattle, WA 98195
23 * Internet: MRC@CAC.Washington.EDU
24 *
25 * Date: 11 May 1989
26 * Last Edited: 16 August 2007
27 */
29 #define isodigit(c) (((unsigned)(c)>=060)&((unsigned)(c)<=067))
30 #define toint(c) ((c)-'0')
32 #include <stdio.h>
34 #include "tcp_unix.h" /* must be before osdep includes tcp.h */
35 #include "mail.h"
36 #include "osdep.h"
37 #include <stdio.h>
38 #include <sys/stat.h>
39 #include <sys/time.h>
40 #include <sys/socket.h>
41 #include <sys/utsname.h>
42 #include <netinet/in.h>
43 #include <arpa/inet.h>
44 #include <netdb.h>
45 #include <ctype.h>
46 #include <errno.h>
47 extern int errno; /* just in case */
48 extern char *sys_errlist[];
49 extern int sys_nerr;
50 #include <pwd.h>
51 #include "misc.h"
54 #include "fs_unix.c"
55 #include "ftl_unix.c"
56 #include "nl_unix.c"
57 #include "env_unix.c"
58 #define fork vfork
59 #include "tcp_unix.c"
60 #include "gr_waitp.c"
61 #include "flocksim.c"
62 #include "tz_sv4.c"
63 #undef setpgrp
64 #include "setpgrp.c"
65 #include "utime.c"
67 /* Emulator for BSD gethostid() call
68 * Returns: a unique identifier for the system.
69 * Even though HP/UX has an undocumented gethostid() system call,
70 * it does not work (at least for non-privileged users).
71 */
73 long gethostid (void)
74 {
75 struct utsname udata;
76 return (uname (&udata)) ? 0xfeedface : atol (udata.__idnumber);
77 }

UW-IMAP'd extensions by yuuji