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.
16 lines
381 B
16 lines
381 B
6 years ago
|
#ifndef testLib9ObjPub_USED
|
||
|
# error "testLib9ObjPub_USED not defined!"
|
||
|
#endif
|
||
|
#ifndef testLib9ObjPriv_USED
|
||
|
# error "testLib9ObjPriv_USED not defined!"
|
||
|
#endif
|
||
|
#ifdef testLib9ObjIface_USED
|
||
|
# error "testLib9ObjIface_USED defined but should not be!"
|
||
|
#endif
|
||
|
int testLib9ObjPub(void);
|
||
|
int testLib9ObjPriv(void);
|
||
|
int testLib9(void)
|
||
|
{
|
||
|
return (testLib9ObjPub() + testLib9ObjPriv());
|
||
|
}
|