~ubuntu-branches/ubuntu/intrepid/ruby1.9/intrepid-updates

« back to all changes in this revision

Viewing changes to ext/bigdecimal/bigdecimal.c

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2007-09-04 16:01:17 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20070904160117-i15zckg2nhxe9fyw
Tags: 1.9.0+20070830-2ubuntu1
* Sync from Debian; remaining changes:
  - Add -g to CFLAGS.
* Fixes build failure on ia64.
* Fixes build failure with gcc-4.2 on lpia.
* Robustify check for target_os, fixing build failure on lpia.
* Set Ubuntu maintainer address.

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
 *
14
14
 */
15
15
 
16
 
#include "ruby.h"
 
16
#include "ruby/ruby.h"
17
17
#include <ctype.h>
18
18
#include <stdio.h>
19
19
#include <stdlib.h>
22
22
#include <float.h>
23
23
#include <math.h>
24
24
#include "math.h"
25
 
#include "version.h"
26
25
 
27
26
/* #define ENABLE_NUMERIC_STRING */
28
27