~ubuntu-branches/ubuntu/quantal/fftw/quantal

« back to all changes in this revision

Viewing changes to fftw/fftw.h.in

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2011-11-29 01:48:33 UTC
  • mfrom: (5.1.1 sid)
  • Revision ID: package-import@ubuntu.com-20111129014833-3leawsns2nghyaoj
Tags: 2.1.5-1
* Team upload.
* New upstream release
* Package moved into the Debian Science team (no answer from the previous
  maintainer) and package not maintained.
* Standards-Version updated to version 3.9.2
* Vcs-Browser & Vcs-Svn updated
* Switch to mpi-default-dev (Closes: #571446)
* Get ride of .la files (Closes: #633175)
* Fix lintian warning debhelper-but-no-misc-depends
* Fix lintian warning patch-system-but-direct-changes-in-diff 
* Switch to dpkg-source 3.0 (quilt) format

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* -*- C -*- */
2
2
/*
3
 
 * Copyright (c) 1997-1999 Massachusetts Institute of Technology
 
3
 * Copyright (c) 1997-1999, 2003 Massachusetts Institute of Technology
4
4
 *
5
5
 * This program is free software; you can redistribute it and/or modify
6
6
 * it under the terms of the GNU General Public License as published by
19
19
 */
20
20
 
21
21
/* fftw.h -- system-wide definitions */
22
 
/* $Id: fftw.h.in,v 1.53 1999/07/24 20:01:23 stevenj Exp $ */
 
22
/* $Id: fftw.h.in,v 1.57 2003/03/16 23:43:46 stevenj Exp $ */
23
23
 
24
24
#ifndef FFTW_H
25
25
#define FFTW_H
51
51
typedef struct {
52
52
     fftw_real re, im;
53
53
} fftw_complex;
54
 
 
55
54
#define c_re(c)  ((c).re)
56
55
#define c_im(c)  ((c).im)
57
56