Advertisement
Guest User

Untitled

a guest
Apr 27th, 2015
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.71 KB | None | 0 0
  1. xavier5293@camelot:~/bellman$ make | erreur.txt
  2. In file included from graphe.h:4:0,
  3. from bellman.c:4:
  4. noeuds.h:18:6: error: conflicting types for ‘qsort’
  5. void qsort(struct noeuds* n, int l, int r);
  6. ^
  7. In file included from bellman.c:3:0:
  8. /usr/include/stdlib.h:765:13: note: previous declaration of ‘qsort’ was here
  9. extern void qsort (void *__base, size_t __nmemb, size_t __size,
  10. ^
  11. In file included from graphe.h:5:0,
  12. from bellman.c:4:
  13. fichier.h:6:97: warning: ‘struct marge’ declared inside parameter list
  14. int ecrireResultat(char *nfs, struct graphe *g, struct chemin *tot, struct chemin *tard, struct marge* margeArc);
  15. ^
  16. fichier.h:6:97: warning: its scope is only this definition or declaration, which is probably not what you want
  17. fichier.h:6:97: warning: ‘struct chemin’ declared inside parameter list
  18. fichier.h:6:97: warning: ‘struct graphe’ declared inside parameter list
  19. In file included from test.h:5:0,
  20. from graphe.h:6,
  21. from bellman.c:4:
  22. vecteur.h:23:84: warning: ‘struct marge’ declared inside parameter list
  23. void calculMarge(struct graphe *g, struct chemin *tot, struct chemin *tard, struct marge* margeGraphe);
  24. ^
  25. vecteur.h:23:84: warning: ‘struct graphe’ declared inside parameter list
  26. In file included from graphe.h:6:0,
  27. from bellman.c:4:
  28. test.h:6:22: warning: ‘struct graphe’ declared inside parameter list
  29. void afficher(struct graphe*);
  30. ^
  31. test.h:11:31: warning: ‘struct graphe’ declared inside parameter list
  32. void afficherGrapheMin(struct graphe *g);
  33. ^
  34. test.h:12:44: warning: ‘struct marge’ declared inside parameter list
  35. void afficheMarge(struct graphe *g, struct marge* m, int max);
  36. ^
  37. test.h:12:44: warning: ‘struct graphe’ declared inside parameter list
  38. test.h:13:44: warning: ‘struct stack’ declared inside parameter list
  39. void afficherStack(struct graphe*g, struct stack *s);
  40. ^
  41. test.h:13:44: warning: ‘struct graphe’ declared inside parameter list
  42. In file included from bellman.c:4:0:
  43. graphe.h:29:81: warning: ‘struct stack’ declared inside parameter list
  44. void identificationChemin(FILE *fich, struct graphe *g, struct stack *s, struct marge *arc, int i, int sortie);
  45. ^
  46. make: *** [bellman.o] Erreur 1
  47. erreur.txt : commande introuvable
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement