You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
332 B
17 lines
332 B
// To compile this, type:
|
|
// gcc -shared -g -Wall -o libtest4-local-suppr-v0.so test4-local-suppr-v0.c
|
|
|
|
#include "test4-local-suppr-v0.h"
|
|
|
|
struct private_data
|
|
{
|
|
int private_data0;
|
|
};
|
|
|
|
void
|
|
foo(struct public_type* p __attribute__((unused)),
|
|
struct a_not_private_type* t __attribute__((unused)))
|
|
{
|
|
/* Do something with p */
|
|
}
|