-
Notifications
You must be signed in to change notification settings - Fork 28
Open
Description
The extension is freezing when I step over a fflush.
example:
#include <stdio.h>
int main(void)
{
printf("hello\n");
fflush(stdout); // works fine
printf("world");
fflush(stdout); // frezes
return 0;
}compile command:
gcc -Wall -Wextra -ggdb -o build/fflush-test fflush-test.cIt works fine on gdb alone.
Expected behaviour
It would step to the line return 0 and not freeze.
Metadata
Metadata
Assignees
Labels
No labels