Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. helpers.c:30:5: error: control may reach end of non-void function [-Werror,-Wreturn-type]
  2. }
  3. ^
  4. helpers.c:60:1: error: control may reach end of non-void function [-Werror,-Wreturn-type]
  5. }
  6. ^
  7. helpers.c:79:5: error: expected identifier or '('
  8. return false;
  9. ^
  10. helpers.c:80:5: error: extraneous closing brace ('}')
  11. }
  12. ^
  13. helpers.c:85:6: error: conflicting types for 'sort'
  14. void sort(int values, int n)
  15. ^
  16. ./helpers.h:17:6: note: previous declaration is here
  17. void sort(int values[], int n);
  18. ^
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement