~ubuntu-branches/ubuntu/lucid/cmake/lucid

« back to all changes in this revision

Viewing changes to Tests/Fortran/myc.c

  • Committer: Bazaar Package Importer
  • Author(s): Artur Rona
  • Date: 2009-12-16 11:11:54 UTC
  • mfrom: (3.1.9 sid)
  • Revision ID: james.westby@ubuntu.com-20091216111154-6accvv6yq86h2hkc
Tags: 2.8.0-5ubuntu1
* Merge from debian testing (LP: #497349). Remaining changes:
  - Keep the Replaces: on cmake-data to cover the Kubuntu version from
    Jaunty in case someone decides to do an (unsupported) Jaunty->Lucid
    upgrade.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include "foo.h"
 
2
extern F_test_mod_sub(void);
 
3
extern F_mysub(void);
 
4
int myc(void)
 
5
{
 
6
  F_mysub();
 
7
  F_my_sub();
 
8
#ifdef TEST_MOD
 
9
  F_test_mod_sub();
 
10
#endif
 
11
  return 0;
 
12
}