Package: util-linux Version: 2.20.1-5.5 The output does not look quite right IMHO for the attached file.
Steps:
$ more d2.c
/*
9
*/
static int foo() { return 42; }
int main(int argc, char *argv[])
{
int v = foo();
return 0;
}
while:
$ less d2.c
/*
1^M 2^M 3^M 5^M 6^M 7^M 8^M 9
*/
static int foo() { return 42; }
int main(int argc, char *argv[])
{
int v = foo();
return 0;
}
/*
1
2
3
5
6
7
8
9
*/
static int foo() { return 42; }
int main(int argc, char *argv[])
{
int v = foo();
return 0;
}

