blob: a188b46da867fe80719a89d56b229f477067536d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// Copyright (C) 2001 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 26 Dec 2001 <nathan@nathan@codesourcery.com>
// PR 411
// Split into pieces for binary compatibility testing October 2002
extern void ctor1_x (void);
int
main ()
{
ctor1_x ();
}
|