Differences From Artifact [4107e88ea3]:
- File src/objc_sync.m — part of check-in [b2c9efebcf] at 2011-03-22 01:03:27 on branch trunk — Clang is a bit more pedantic with -Wshorten-64-to-32. (user: js, size: 4247) [annotate] [blame] [check-ins using]
To Artifact [80e72847c9]:
- File src/objc_sync.m — part of check-in [0f4a81649d] at 2011-07-10 18:44:12 on branch 0.5 — Include sys/types.h in objc_sync.m. (user: js, size: 4271) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
15 16 17 18 19 20 21 22 23 24 25 26 27 28 | */ #include "config.h" #include <stdio.h> #include <stdlib.h> #include <assert.h> #ifdef OF_OBJFW_RUNTIME # import <objfw-rt.h> #else # import <objc/objc.h> #endif | > > | 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | */ #include "config.h" #include <stdio.h> #include <stdlib.h> #include <assert.h> #include <sys/types.h> #ifdef OF_OBJFW_RUNTIME # import <objfw-rt.h> #else # import <objc/objc.h> #endif |
︙ | ︙ |