Advertisement
Guest User

Untitled

a guest
Nov 19th, 2017
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. gcc -Wall -c src/main.c -o bin/main.o
  2. src/main.c: In function ‘main’:
  3. src/main.c:77:10: warning: implicit declaration of function ‘tokenization’ [-Wimplicit-function-declaration]
  4. free(tokenization(src,delim,taille));
  5. ^
  6. src/main.c:77:10: warning: passing argument 1 of ‘free’ makes pointer from integer without a cast [-Wint-conversion]
  7. In file included from src/exo4.h:5:0,
  8. from src/main.c:1:
  9. /usr/include/stdlib.h:483:13: note: expected ‘void *’ but argument is of type ‘int’
  10. extern void free (void *__ptr) __THROW;
  11. ^
  12. src/main.c:63:9: warning: ‘src’ may be used uninitialized in this function [-Wmaybe-uninitialized]
  13. if (scanf("%s",src)!=1) {
  14. ^
  15. gcc -Wall bin/exo3.o bin/exo4.o bin/tokenization.o bin/exo1.o bin/main.o bin/exo2.o -o prog
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement