Advertisement
Guest User

Untitled

a guest
May 6th, 2015
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. // Код программы Postgis
  2. #include <VulLib/vullib.h>// подключаю свою библиотеку
  3.  
  4. //...
  5. {__memset_probe(newpoints, size); memset(newpoints, 0, size);}
  6. //...
  7.  
  8. #include "vullib.h"
  9. void *__memset_probe(void *s, size_t count)
  10. {
  11. // делает что то, например выводит сообщение в опр. файл
  12. return s;
  13. }
  14.  
  15. #ifndef __VULLIB__
  16. #define __VULLIB__
  17.  
  18. #include <stdio.h>
  19. void *__memset_probe(void *, size_t);
  20. #endif /* __VULLIB__ */
  21.  
  22. ./configure
  23. make
  24.  
  25. more undefined references to `__memset_probe' follow
  26. collect2: ld returned 1 exit status
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement