mirror of
https://github.com/samba-team/samba.git
synced 2025-01-17 02:05:21 +03:00
1c4bbe0654
(This used to be commit 173375f8d88bf8e8db8d60e5d5f0e5dcc28767d9)
9 lines
110 B
C
9 lines
110 B
C
/* a trivial function used to test building shared libraries */
|
|
|
|
int foo(void);
|
|
|
|
int foo(void)
|
|
{
|
|
return 1;
|
|
}
|