mirror of
https://github.com/protobuf-c/protobuf-c.git
synced 2024-12-29 07:19:42 +08:00
13 lines
233 B
C
13 lines
233 B
C
|
#include <stdlib.h>
|
||
|
|
||
|
#include "t/issue251/issue251.pb-c.h"
|
||
|
|
||
|
int main(void)
|
||
|
{
|
||
|
/*
|
||
|
* The problem in #251 caused invalid code to be generated in the
|
||
|
* .pb-c.h file, so there's nothing for us to do here.
|
||
|
*/
|
||
|
return EXIT_SUCCESS;
|
||
|
}
|