ObjFW  Check-in [52d24aa522]

Overview
Comment:Add missing nullability for __getmainargs()
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 52d24aa522ebf7f9942a1a2bbb10586b8f1ea389595fdbfab31a3ba5042c6126
User & Date: js on 2024-11-04 00:23:06
Other Links: manifest | tags
Context
2024-11-04
01:05
GitHub Actions: Add ObjC++ tests Leaf check-in: 089d52ca9a user: js tags: trunk
00:23
Add missing nullability for __getmainargs() check-in: 52d24aa522 user: js tags: trunk
00:19
Don't call into C++ EH personality on 68k AmigaOS check-in: 4763da1d8d user: js tags: trunk
Changes

Modified src/OFApplication.h from [4a3043d514] to [7a64d2e109].

100
101
102
103
104
105
106
107


108
109
110
111
112
113
114
100
101
102
103
104
105
106

107
108
109
110
111
112
113
114
115







-
+
+







									\
		return OFApplicationMain(&argc, &argv,			\
		    (class_ *)[[class_ alloc] init]);			\
	}
# ifdef __cplusplus
extern "C" {
# endif
extern void __getmainargs(int *, char ***, char ***, int, int *);
extern void __getmainargs(int *_Nonnull, char *_Nonnull *_Nullable *_Nullable,
    char *_Nonnull *_Nullable *_Nullable, int, int *_Nonnull);
extern int _CRT_glob;
# ifdef __cplusplus
}
# endif
#endif

#ifdef OF_HAVE_PLEDGE