mirror of
https://github.com/samba-team/samba.git
synced 2024-12-27 03:21:53 +03:00
1c4bbe0654
(This used to be commit 173375f8d8
)
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;
|
|
}
|