Differences From Artifact [a39e9e645c]:
- File src/objc_sync.m — part of check-in [b466a2bb49] at 2011-04-25 11:09:36 on branch trunk — Fix a forgotten variable rename in objc_sync.m. (user: js, size: 4247) [annotate] [blame] [check-ins using]
To Artifact [bf1230d661]:
- File src/objc_sync.m — part of check-in [47f179bc09] at 2011-07-10 18:44:12 on branch trunk — 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 |
︙ | ︙ |