web
Last change
on this file since f6f3e91 was
f6f3e91,
checked in by Jessica B. Hamrick <jhamrick@…>, 15 years ago
|
Preserve directory hierarchy (not sure what happened to it)
|
-
Property mode set to
100644
|
File size:
514 bytes
|
Line | |
---|
1 | /* |
---|
2 | * Dummy symbol to prevent an empty library. |
---|
3 | * |
---|
4 | * On platforms that already have all of the functions that libportable would |
---|
5 | * supply, Automake builds an empty library and then calls ar with nonsensical |
---|
6 | * arguments. Ensure that libportable always contains at least one symbol. |
---|
7 | * |
---|
8 | * Written by Russ Allbery <rra@stanford.edu> |
---|
9 | * This work is hereby placed in the public domain by its author. |
---|
10 | */ |
---|
11 | |
---|
12 | /* Prototype to avoid gcc warnings. */ |
---|
13 | int portable_dummy(void); |
---|
14 | |
---|
15 | int |
---|
16 | portable_dummy(void) |
---|
17 | { |
---|
18 | return 42; |
---|
19 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.