~ubuntu-branches/ubuntu/vivid/atlas/vivid

« back to all changes in this revision

Viewing changes to tune/blas/level1/axpysrch.c

  • Committer: Package Import Robot
  • Author(s): Sébastien Villemot
  • Date: 2013-06-11 15:58:16 UTC
  • mfrom: (1.1.3 upstream)
  • mto: (2.2.21 experimental)
  • mto: This revision was merged to the branch mainline in revision 26.
  • Revision ID: package-import@ubuntu.com-20130611155816-b72z8f621tuhbzn0
Tags: upstream-3.10.1
Import upstream version 3.10.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#include "atlas_misc.h"
2
2
#include <assert.h>
3
3
#include <string.h>
 
4
#include <ctype.h>
4
5
 
5
6
#define AlphaX 2
6
7
typedef struct FileNode FILENODE;
158
159
{
159
160
   FILE *fpin;
160
161
   FILENODE *fbase, *fn, *fp=NULL;
161
 
   char ln[512], rout[256], auth[256], cc[256], ccflags[256];
 
162
   char ln[512], rout[256], auth[256], cc[256], ccflags[512];
162
163
   char *pcc, *pccflags;
163
164
   int i, n, ID, alpha, beta, incX, incY;
164
165
 
1092
1093
   }
1093
1094
   return(ch);
1094
1095
}
1095
 
main(int nargs, char **args)
 
1096
int main(int nargs, char **args)
1096
1097
{
1097
1098
   char pre;
1098
1099
   pre = GetFlags(nargs, args);
1099
1100
   GoToTown(pre);
1100
 
   exit(0);
 
1101
   return(0);
1101
1102
}