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

« back to all changes in this revision

Viewing changes to routines/intersci/cerro.c

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2002-03-21 16:57:43 UTC
  • Revision ID: james.westby@ubuntu.com-20020321165743-e9mv12c1tb1plztg
Tags: upstream-2.6
ImportĀ upstreamĀ versionĀ 2.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Copyright INRIA */
 
2
#include <string.h>
 
3
#include "../machine.h"
 
4
#include "cerro.h"
 
5
 
 
6
extern void C2F(erro)();
 
7
 
 
8
#define STRLEN 4096
 
9
 
 
10
void cerro(str)
 
11
char *str;
 
12
{
 
13
  int l;
 
14
  l = strlen(str) + 1;
 
15
  C2F(erro)(str,l);
 
16
}