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

« back to all changes in this revision

Viewing changes to tune/blas/level1/copysrch.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
 
1013
1014
   }
1014
1015
   return(ch);
1015
1016
}
1016
 
main(int nargs, char **args)
 
1017
int main(int nargs, char **args)
1017
1018
{
1018
1019
   char pre;
1019
1020
   pre = GetFlags(nargs, args);
1020
1021
   GoToTown(pre);
1021
 
   exit(0);
 
1022
   return(0);
1022
1023
}