mirror of
https://github.com/opnsense/src.git
synced 2026-04-27 09:06:49 -04:00
Sponsored by: Klara, Inc. Reviewed by: pauamma_gundo.com, pstef, kevans Differential Revision: https://reviews.freebsd.org/D40788
8 lines
58 B
Text
8 lines
58 B
Text
struct s {
|
|
int i;
|
|
};
|
|
void
|
|
f(struct s *p)
|
|
{
|
|
p -> i--;
|
|
}
|