Skip to content

Commit

Permalink
Add broken files
Browse files Browse the repository at this point in the history
  • Loading branch information
echoix committed Mar 6, 2024
1 parent 5334446 commit 237f262
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
7 changes: 4 additions & 3 deletions file with spaces.c
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,10 @@
*
*****************************************************************************/

#include <stdlib.h>
#include <stdlib.h>

int main(int argc, char **argv)
int main(int argc, char * * argv)
{

int ret;
}
}
9 changes: 5 additions & 4 deletions file with special some%0Athing.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@

#include <stdlib.h>

int main(int argc, char **argv)
{
int ret;
}
int main(int
argc , char **argv)
{
int ret ;
}
4 changes: 2 additions & 2 deletions file with special some;thing.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

#include <stdlib.h>

int main(int argc, char **argv)
int main( int argc, char **argv)
{
int ret;
int ret;
}

0 comments on commit 237f262

Please sign in to comment.