~ubuntu-branches/ubuntu/vivid/psicode/vivid

« back to all changes in this revision

Viewing changes to src/bin/transqt2/globals.h

  • Committer: Bazaar Package Importer
  • Author(s): Michael Banck
  • Date: 2008-06-07 16:49:57 UTC
  • mfrom: (2.1.2 hardy)
  • Revision ID: james.westby@ubuntu.com-20080607164957-8pifvb133yjlkagn
Tags: 3.3.0-3
* debian/rules (DEB_MAKE_CHECK_TARGET): Do not abort test suite on
  failures.
* debian/rules (DEB_CONFIGURE_EXTRA_FLAGS): Set ${bindir} to /usr/lib/psi.
* debian/rules (install/psi3): Move psi3 file to /usr/bin.
* debian/patches/07_464867_move_executables.dpatch: New patch, add
  /usr/lib/psi to the $PATH, so that the moved executables are found.
  (closes: #464867)
* debian/patches/00list: Adjusted.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include <psifiles.h>
 
2
#include <ccfiles.h>
 
3
#include "MOInfo.h"
 
4
#include "Params.h"
 
5
 
 
6
#define IOFF_MAX 32641
 
7
 
 
8
/* Global variables */
 
9
#ifdef EXTERN
 
10
#undef EXTERN
 
11
#define EXTERN extern
 
12
#else
 
13
#define EXTERN
 
14
#endif
 
15
 
 
16
EXTERN FILE *infile, *outfile;
 
17
EXTERN char *psi_file_prefix;
 
18
 
 
19
EXTERN int *ioff;
 
20
EXTERN struct MOInfo moinfo;
 
21
EXTERN struct Params params;
 
22
 
 
23
#define INDEX(i,j) ((i>j) ? (ioff[(i)]+(j)) : (ioff[(j)]+(i)))
 
24
 
 
25
#define PSIF_HALFT0 91
 
26
#define PSIF_HALFT1 92