~ubuntu-branches/ubuntu/hoary/scilab/hoary

« back to all changes in this revision

Viewing changes to routines/int/geninsert2.c

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2005-01-09 22:58:21 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050109225821-473xr8vhgugxxx5j
Tags: 3.0-12
changed configure.in to build scilab's own malloc.o, closes: #255869

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#include "../machine.h"
2
 
typedef char integer1;
 
2
typedef signed char integer1;
3
3
typedef short integer2;
4
4
/*     Copyright INRIA */
5
5
 
28
28
integer *to;
29
29
{
30
30
  integer i1, i2;
31
 
  static integer i, j, l, ljj,jj;
 
31
  static integer i, j, ljj,jj;
32
32
 
33
33
  --indxi;
34
34
  --indxj;
53
53
    INSERT2(unsigned int);
54
54
    break;
55
55
  }
 
56
  return 0;
56
57
}
57
58