~ubuntu-branches/ubuntu/hardy/ghostscript/hardy

« back to all changes in this revision

Viewing changes to src/gs.c

  • Committer: Bazaar Package Importer
  • Author(s): Till Kamppeter
  • Date: 2007-11-22 12:17:43 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20071122121743-cd70s3ypq0r243mp
Tags: 8.61.dfsg.1-0ubtuntu1
* New upstream release
  o Final 8.61 release
* debian/patches/09_ijs_krgb_support.dpatch: Adapted to upstream changes.
* debian/rules: Updated CUPS-related variables for "make install" calls.
* debian/rules: Remove /usr/include/ghostscript from the ghostscript
  package, they go into lings-dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
   San Rafael, CA  94903, U.S.A., +1(415)492-9861, for further information.
12
12
*/
13
13
 
14
 
/* $Id: gs.c 8022 2007-06-05 22:23:38Z giles $ */
 
14
/* $Id: gs.c 8250 2007-09-25 13:31:24Z giles $ */
15
15
/* 'main' program for Ghostscript */
16
16
#include "ghost.h"
17
17
#include "imain.h"
31
31
/* Define an optional array of strings for testing. */
32
32
/*#define RUN_STRINGS */
33
33
#ifdef RUN_STRINGS
34
 
private const char *run_strings[] =
 
34
static const char *run_strings[] =
35
35
{
36
36
    "2 vmreclaim /SAVE save def 2 vmreclaim",
37
37
    "(saved\n) print flush",
50
50
 * Linux sends a SEGV signal if the access happens below the stack pointer.
51
51
 * Pre-loading the stack pages resolves the problem.
52
52
 */
53
 
private void 
 
53
static void 
54
54
commit_stack_pages( void )
55
55
{
56
56
    char buf[65536]; /* In most cases GS lives in 64K stack */