(self)
| 10843 | }''', '', force_c=True) |
| 10844 | |
| 10845 | def test_linking_recv(self): |
| 10846 | self.do_run(r''' |
| 10847 | #include <sys/types.h> |
| 10848 | #include <sys/socket.h> |
| 10849 | int main(void) { |
| 10850 | recv(0, 0, 0, 0); |
| 10851 | return 0; |
| 10852 | } |
| 10853 | ''', '', force_c=True) |
| 10854 | |
| 10855 | def test_linking_send(self): |
| 10856 | self.do_run(r''' |