~ubuntu-branches/ubuntu/oneiric/ghostscript/oneiric

« back to all changes in this revision

Viewing changes to base/gsmisc.c

  • Committer: Bazaar Package Importer
  • Author(s): Till Kamppeter
  • Date: 2011-07-15 16:49:55 UTC
  • mfrom: (1.1.23 upstream)
  • Revision ID: james.westby@ubuntu.com-20110715164955-uga6qibao6kez05c
Tags: 9.04~dfsg~20110715-0ubuntu1
* New upstream release
   - GIT snapshot from Jult, 12 2011.
* debian/patches/020110406~a54df2d.patch,
  debian/patches/020110408~0791cc8.patch,
  debian/patches/020110408~507cbee.patch,
  debian/patches/020110411~4509a49.patch,
  debian/patches/020110412~78bb9a6.patch,
  debian/patches/020110418~a05ab8a.patch,
  debian/patches/020110420~20b6c78.patch,
  debian/patches/020110420~4ddefa2.patch: Removed upstream patches.
* debian/rules: Generate ABI version number (variable "abi") correctly,
  cutting off repackaging and pre-release parts.
* debian/rules: Added ./lcms2/ directory to DEB_UPSTREAM_REPACKAGE_EXCLUDES.
* debian/copyright: Added lcms2/* to the list of excluded files.
* debian/symbols.common: Updated for new upstream source. Applied patch
  which dpkg-gensymbols generated for debian/libgs9.symbols to this file.

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: gsmisc.c 11956 2010-12-17 16:48:02Z till $ */
 
14
/* $Id$ */
15
15
/* Miscellaneous utilities for Ghostscript library */
16
16
 
17
 
 
18
17
/*
19
18
 * In order to capture the original definition of sqrt, which might be
20
19
 * either a procedure or a macro and might not have an ANSI-compliant
253
252
    }
254
253
}
255
254
 
256
 
 
257
255
int gs_throw_imp(const char *func, const char *file, int line, int op, int code, const char *fmt, ...)
258
256
{
259
257
    char msg[1024];
272
270
           */
273
271
    }
274
272
 
275
 
 
276
273
    /* throw */
277
274
    if (op == 0)
278
275
        errprintf_nomem("+ %s:%d: %s(): %s\n", file, line, func, msg);
316
313
    }
317
314
}
318
315
 
319
 
 
320
316
/* ------ Substitutes for missing C library functions ------ */
321
317
 
322
318
#ifdef MEMORY__NEED_MEMMOVE     /* see memory_.h */