~ubuntu-branches/ubuntu/oneiric/openafs/oneiric-201305130334

« back to all changes in this revision

Viewing changes to src/gtx/curseswindows.c

  • Committer: Bazaar Package Importer
  • Author(s): Russ Allbery
  • Date: 2008-09-22 19:07:02 UTC
  • mfrom: (12.1.14 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080922190702-59m13d7kn6gkw32d
Tags: 1.4.7.dfsg1-6
* Apply upstream patch to free /proc entries in the correct order.
  Thanks, Marc Dionne.  (Closes: #493914)
* Apply upstream deltas to support 2.6.27 kernels and to stop using
  COMMON_KERN_CFLAGS for all 2.6 kernels uniformly, which fixes
  problems on amd64 with newer kernels.  Thanks, Björn Torkelsson.
  (LP: #267504)
* Translation updates:
  - Swedish, thanks Martin Bagge.  (Closes: #493120)

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
 *      Implementation of the gator curses window facility.
15
15
 *
16
16
 *------------------------------------------------------------------------*/
17
 
#define IGNORE_STDS_H
 
17
 
18
18
#include <afsconfig.h>
19
19
#include <afs/param.h>
20
20
 
21
21
RCSID
22
 
    ("$Header: /cvs/openafs/src/gtx/curseswindows.c,v 1.10 2003/07/15 23:15:12 shadow Exp $");
 
22
    ("$Header: /cvs/openafs/src/gtx/curseswindows.c,v 1.10.2.2 2008/03/10 22:35:35 shadow Exp $");
23
23
 
24
24
 
25
25
#if defined(AFS_HPUX110_ENV) && !defined(__HP_CURSES)
37
37
#include <stdio.h>
38
38
#include <sys/time.h>
39
39
#include <errno.h>
40
 
 
41
 
#ifdef HAVE_STRING_H
42
40
#include <string.h>
43
 
#else
44
 
#ifdef HAVE_STRINGS_H
45
 
#include <strings.h>
46
 
#endif
47
 
#endif
48
41
#include <stdlib.h>
49
42
 
 
43
#include <lwp.h>
 
44
 
50
45
#include "gtxcurseswin.h"       /*Interface definition */
51
46
#include "gtxobjects.h"
52
47
#include "gtxframe.h"