diff options
43 files changed, 531 insertions, 574 deletions
diff --git a/gl/pthread.h b/gl/pthread.h index 599f1633..62e1b503 100644 --- a/gl/pthread.h +++ b/gl/pthread.h | |||
| @@ -216,16 +216,6 @@ | |||
| 216 | #define _GL_FUNCDECL_RPL_1(rpl_func,rettype,parameters,...) \ | 216 | #define _GL_FUNCDECL_RPL_1(rpl_func,rettype,parameters,...) \ |
| 217 | _GL_EXTERN_C_FUNC __VA_ARGS__ rettype rpl_func parameters | 217 | _GL_EXTERN_C_FUNC __VA_ARGS__ rettype rpl_func parameters |
| 218 | 218 | ||
| 219 | /* _GL_FUNCDECL_SYS_NAME (func) expands to plain func if C++, and to | ||
| 220 | parenthesized func otherwise. Parenthesization is needed in C23 if | ||
| 221 | the function is like strchr and so is a qualifier-generic macro | ||
| 222 | that expands to something more complicated. */ | ||
| 223 | #ifdef __cplusplus | ||
| 224 | # define _GL_FUNCDECL_SYS_NAME(func) func | ||
| 225 | #else | ||
| 226 | # define _GL_FUNCDECL_SYS_NAME(func) (func) | ||
| 227 | #endif | ||
| 228 | |||
| 229 | /* _GL_FUNCDECL_SYS (func, rettype, parameters, [attributes]); | 219 | /* _GL_FUNCDECL_SYS (func, rettype, parameters, [attributes]); |
| 230 | declares the system function, named func, with the given prototype, | 220 | declares the system function, named func, with the given prototype, |
| 231 | consisting of return type, parameters, and attributes. | 221 | consisting of return type, parameters, and attributes. |
| @@ -238,7 +228,7 @@ | |||
| 238 | _GL_FUNCDECL_SYS (posix_openpt, int, (int flags), _GL_ATTRIBUTE_NODISCARD); | 228 | _GL_FUNCDECL_SYS (posix_openpt, int, (int flags), _GL_ATTRIBUTE_NODISCARD); |
| 239 | */ | 229 | */ |
| 240 | #define _GL_FUNCDECL_SYS(func,rettype,parameters,...) \ | 230 | #define _GL_FUNCDECL_SYS(func,rettype,parameters,...) \ |
| 241 | _GL_EXTERN_C_FUNC __VA_ARGS__ rettype _GL_FUNCDECL_SYS_NAME (func) parameters | 231 | _GL_EXTERN_C_FUNC __VA_ARGS__ rettype func parameters |
| 242 | 232 | ||
| 243 | /* _GL_CXXALIAS_RPL (func, rettype, parameters); | 233 | /* _GL_CXXALIAS_RPL (func, rettype, parameters); |
| 244 | declares a C++ alias called GNULIB_NAMESPACE::func | 234 | declares a C++ alias called GNULIB_NAMESPACE::func |
| @@ -409,7 +399,7 @@ | |||
| 409 | _GL_CXXALIASWARN_1 (func, GNULIB_NAMESPACE) | 399 | _GL_CXXALIASWARN_1 (func, GNULIB_NAMESPACE) |
| 410 | # define _GL_CXXALIASWARN_1(func,namespace) \ | 400 | # define _GL_CXXALIASWARN_1(func,namespace) \ |
| 411 | _GL_CXXALIASWARN_2 (func, namespace) | 401 | _GL_CXXALIASWARN_2 (func, namespace) |
| 412 | /* To work around GCC bug <https://gcc.gnu.org/PR43881>, | 402 | /* To work around GCC bug <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=43881>, |
| 413 | we enable the warning only when not optimizing. */ | 403 | we enable the warning only when not optimizing. */ |
| 414 | # if !(defined __GNUC__ && !defined __clang__ && __OPTIMIZE__) | 404 | # if !(defined __GNUC__ && !defined __clang__ && __OPTIMIZE__) |
| 415 | # define _GL_CXXALIASWARN_2(func,namespace) \ | 405 | # define _GL_CXXALIASWARN_2(func,namespace) \ |
| @@ -437,7 +427,7 @@ | |||
| 437 | GNULIB_NAMESPACE) | 427 | GNULIB_NAMESPACE) |
| 438 | # define _GL_CXXALIASWARN1_1(func,rettype,parameters_and_attributes,namespace) \ | 428 | # define _GL_CXXALIASWARN1_1(func,rettype,parameters_and_attributes,namespace) \ |
| 439 | _GL_CXXALIASWARN1_2 (func, rettype, parameters_and_attributes, namespace) | 429 | _GL_CXXALIASWARN1_2 (func, rettype, parameters_and_attributes, namespace) |
| 440 | /* To work around GCC bug <https://gcc.gnu.org/PR43881>, | 430 | /* To work around GCC bug <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=43881>, |
| 441 | we enable the warning only when not optimizing. */ | 431 | we enable the warning only when not optimizing. */ |
| 442 | # if !(defined __GNUC__ && !defined __clang__ && __OPTIMIZE__) | 432 | # if !(defined __GNUC__ && !defined __clang__ && __OPTIMIZE__) |
| 443 | # define _GL_CXXALIASWARN1_2(func,rettype,parameters_and_attributes,namespace) \ | 433 | # define _GL_CXXALIASWARN1_2(func,rettype,parameters_and_attributes,namespace) \ |
| @@ -1112,6 +1102,7 @@ _GL_CXXALIAS_SYS_CAST (pthread_create, int, | |||
| 1112 | _GL_CXXALIASWARN (pthread_create); | 1102 | _GL_CXXALIASWARN (pthread_create); |
| 1113 | # endif | 1103 | # endif |
| 1114 | #elif defined GNULIB_POSIXCHECK | 1104 | #elif defined GNULIB_POSIXCHECK |
| 1105 | # undef pthread_create | ||
| 1115 | # if HAVE_RAW_DECL_PTHREAD_CREATE | 1106 | # if HAVE_RAW_DECL_PTHREAD_CREATE |
| 1116 | _GL_WARN_ON_USE (pthread_create, "pthread_create is not portable - " | 1107 | _GL_WARN_ON_USE (pthread_create, "pthread_create is not portable - " |
| 1117 | "use gnulib module pthread-thread for portability"); | 1108 | "use gnulib module pthread-thread for portability"); |
| @@ -1138,6 +1129,7 @@ _GL_CXXALIAS_SYS (pthread_attr_init, int, (pthread_attr_t *attr)); | |||
| 1138 | _GL_CXXALIASWARN (pthread_attr_init); | 1129 | _GL_CXXALIASWARN (pthread_attr_init); |
| 1139 | # endif | 1130 | # endif |
| 1140 | #elif defined GNULIB_POSIXCHECK | 1131 | #elif defined GNULIB_POSIXCHECK |
| 1132 | # undef pthread_attr_init | ||
| 1141 | # if HAVE_RAW_DECL_PTHREAD_ATTR_INIT | 1133 | # if HAVE_RAW_DECL_PTHREAD_ATTR_INIT |
| 1142 | _GL_WARN_ON_USE (pthread_attr_init, "pthread_attr_init is not portable - " | 1134 | _GL_WARN_ON_USE (pthread_attr_init, "pthread_attr_init is not portable - " |
| 1143 | "use gnulib module pthread-thread for portability"); | 1135 | "use gnulib module pthread-thread for portability"); |
| @@ -1168,6 +1160,7 @@ _GL_CXXALIAS_SYS (pthread_attr_getdetachstate, int, | |||
| 1168 | _GL_CXXALIASWARN (pthread_attr_getdetachstate); | 1160 | _GL_CXXALIASWARN (pthread_attr_getdetachstate); |
| 1169 | # endif | 1161 | # endif |
| 1170 | #elif defined GNULIB_POSIXCHECK | 1162 | #elif defined GNULIB_POSIXCHECK |
| 1163 | # undef pthread_attr_getdetachstate | ||
| 1171 | # if HAVE_RAW_DECL_PTHREAD_ATTR_GETDETACHSTATE | 1164 | # if HAVE_RAW_DECL_PTHREAD_ATTR_GETDETACHSTATE |
| 1172 | _GL_WARN_ON_USE (pthread_attr_getdetachstate, "pthread_attr_getdetachstate is not portable - " | 1165 | _GL_WARN_ON_USE (pthread_attr_getdetachstate, "pthread_attr_getdetachstate is not portable - " |
| 1173 | "use gnulib module pthread-thread for portability"); | 1166 | "use gnulib module pthread-thread for portability"); |
| @@ -1198,6 +1191,7 @@ _GL_CXXALIAS_SYS (pthread_attr_setdetachstate, int, | |||
| 1198 | _GL_CXXALIASWARN (pthread_attr_setdetachstate); | 1191 | _GL_CXXALIASWARN (pthread_attr_setdetachstate); |
| 1199 | # endif | 1192 | # endif |
| 1200 | #elif defined GNULIB_POSIXCHECK | 1193 | #elif defined GNULIB_POSIXCHECK |
| 1194 | # undef pthread_attr_setdetachstate | ||
| 1201 | # if HAVE_RAW_DECL_PTHREAD_ATTR_SETDETACHSTATE | 1195 | # if HAVE_RAW_DECL_PTHREAD_ATTR_SETDETACHSTATE |
| 1202 | _GL_WARN_ON_USE (pthread_attr_setdetachstate, "pthread_attr_setdetachstate is not portable - " | 1196 | _GL_WARN_ON_USE (pthread_attr_setdetachstate, "pthread_attr_setdetachstate is not portable - " |
| 1203 | "use gnulib module pthread-thread for portability"); | 1197 | "use gnulib module pthread-thread for portability"); |
| @@ -1224,6 +1218,7 @@ _GL_CXXALIAS_SYS (pthread_attr_destroy, int, (pthread_attr_t *attr)); | |||
| 1224 | _GL_CXXALIASWARN (pthread_attr_destroy); | 1218 | _GL_CXXALIASWARN (pthread_attr_destroy); |
| 1225 | # endif | 1219 | # endif |
| 1226 | #elif defined GNULIB_POSIXCHECK | 1220 | #elif defined GNULIB_POSIXCHECK |
| 1221 | # undef pthread_attr_destroy | ||
| 1227 | # if HAVE_RAW_DECL_PTHREAD_ATTR_DESTROY | 1222 | # if HAVE_RAW_DECL_PTHREAD_ATTR_DESTROY |
| 1228 | _GL_WARN_ON_USE (pthread_attr_destroy, "pthread_attr_destroy is not portable - " | 1223 | _GL_WARN_ON_USE (pthread_attr_destroy, "pthread_attr_destroy is not portable - " |
| 1229 | "use gnulib module pthread-thread for portability"); | 1224 | "use gnulib module pthread-thread for portability"); |
| @@ -1248,6 +1243,7 @@ _GL_CXXALIAS_SYS (pthread_self, pthread_t, (void)); | |||
| 1248 | _GL_CXXALIASWARN (pthread_self); | 1243 | _GL_CXXALIASWARN (pthread_self); |
| 1249 | # endif | 1244 | # endif |
| 1250 | #elif defined GNULIB_POSIXCHECK | 1245 | #elif defined GNULIB_POSIXCHECK |
| 1246 | # undef pthread_self | ||
| 1251 | # if HAVE_RAW_DECL_PTHREAD_SELF | 1247 | # if HAVE_RAW_DECL_PTHREAD_SELF |
| 1252 | _GL_WARN_ON_USE (pthread_self, "pthread_self is not portable - " | 1248 | _GL_WARN_ON_USE (pthread_self, "pthread_self is not portable - " |
| 1253 | "use gnulib module pthread-thread for portability"); | 1249 | "use gnulib module pthread-thread for portability"); |
| @@ -1272,6 +1268,7 @@ _GL_CXXALIAS_SYS (pthread_equal, int, (pthread_t thread1, pthread_t thread2)); | |||
| 1272 | _GL_CXXALIASWARN (pthread_equal); | 1268 | _GL_CXXALIASWARN (pthread_equal); |
| 1273 | # endif | 1269 | # endif |
| 1274 | #elif defined GNULIB_POSIXCHECK | 1270 | #elif defined GNULIB_POSIXCHECK |
| 1271 | # undef pthread_equal | ||
| 1275 | # if HAVE_RAW_DECL_PTHREAD_EQUAL | 1272 | # if HAVE_RAW_DECL_PTHREAD_EQUAL |
| 1276 | _GL_WARN_ON_USE (pthread_equal, "pthread_equal is not portable - " | 1273 | _GL_WARN_ON_USE (pthread_equal, "pthread_equal is not portable - " |
| 1277 | "use gnulib module pthread-thread for portability"); | 1274 | "use gnulib module pthread-thread for portability"); |
| @@ -1296,6 +1293,7 @@ _GL_CXXALIAS_SYS (pthread_detach, int, (pthread_t thread)); | |||
| 1296 | _GL_CXXALIASWARN (pthread_detach); | 1293 | _GL_CXXALIASWARN (pthread_detach); |
| 1297 | # endif | 1294 | # endif |
| 1298 | #elif defined GNULIB_POSIXCHECK | 1295 | #elif defined GNULIB_POSIXCHECK |
| 1296 | # undef pthread_detach | ||
| 1299 | # if HAVE_RAW_DECL_PTHREAD_DETACH | 1297 | # if HAVE_RAW_DECL_PTHREAD_DETACH |
| 1300 | _GL_WARN_ON_USE (pthread_detach, "pthread_detach is not portable - " | 1298 | _GL_WARN_ON_USE (pthread_detach, "pthread_detach is not portable - " |
| 1301 | "use gnulib module pthread-thread for portability"); | 1299 | "use gnulib module pthread-thread for portability"); |
| @@ -1320,6 +1318,7 @@ _GL_CXXALIAS_SYS (pthread_join, int, (pthread_t thread, void **valuep)); | |||
| 1320 | _GL_CXXALIASWARN (pthread_join); | 1318 | _GL_CXXALIASWARN (pthread_join); |
| 1321 | # endif | 1319 | # endif |
| 1322 | #elif defined GNULIB_POSIXCHECK | 1320 | #elif defined GNULIB_POSIXCHECK |
| 1321 | # undef pthread_join | ||
| 1323 | # if HAVE_RAW_DECL_PTHREAD_JOIN | 1322 | # if HAVE_RAW_DECL_PTHREAD_JOIN |
| 1324 | _GL_WARN_ON_USE (pthread_join, "pthread_join is not portable - " | 1323 | _GL_WARN_ON_USE (pthread_join, "pthread_join is not portable - " |
| 1325 | "use gnulib module pthread-thread for portability"); | 1324 | "use gnulib module pthread-thread for portability"); |
| @@ -1345,6 +1344,7 @@ _GL_CXXALIAS_SYS_CAST (pthread_exit, void, (void *value)); | |||
| 1345 | _GL_CXXALIASWARN (pthread_exit); | 1344 | _GL_CXXALIASWARN (pthread_exit); |
| 1346 | # endif | 1345 | # endif |
| 1347 | #elif defined GNULIB_POSIXCHECK | 1346 | #elif defined GNULIB_POSIXCHECK |
| 1347 | # undef pthread_exit | ||
| 1348 | # if HAVE_RAW_DECL_PTHREAD_EXIT | 1348 | # if HAVE_RAW_DECL_PTHREAD_EXIT |
| 1349 | _GL_WARN_ON_USE (pthread_exit, "pthread_exit is not portable - " | 1349 | _GL_WARN_ON_USE (pthread_exit, "pthread_exit is not portable - " |
| 1350 | "use gnulib module pthread-thread for portability"); | 1350 | "use gnulib module pthread-thread for portability"); |
| @@ -1378,6 +1378,7 @@ _GL_CXXALIAS_SYS_CAST (pthread_once, int, | |||
| 1378 | _GL_CXXALIASWARN (pthread_once); | 1378 | _GL_CXXALIASWARN (pthread_once); |
| 1379 | # endif | 1379 | # endif |
| 1380 | #elif defined GNULIB_POSIXCHECK | 1380 | #elif defined GNULIB_POSIXCHECK |
| 1381 | # undef pthread_once | ||
| 1381 | # if HAVE_RAW_DECL_PTHREAD_ONCE | 1382 | # if HAVE_RAW_DECL_PTHREAD_ONCE |
| 1382 | _GL_WARN_ON_USE (pthread_once, "pthread_once is not portable - " | 1383 | _GL_WARN_ON_USE (pthread_once, "pthread_once is not portable - " |
| 1383 | "use gnulib module pthread-once for portability"); | 1384 | "use gnulib module pthread-once for portability"); |
| @@ -1414,6 +1415,7 @@ _GL_CXXALIAS_SYS (pthread_mutex_init, int, | |||
| 1414 | _GL_CXXALIASWARN (pthread_mutex_init); | 1415 | _GL_CXXALIASWARN (pthread_mutex_init); |
| 1415 | # endif | 1416 | # endif |
| 1416 | #elif defined GNULIB_POSIXCHECK | 1417 | #elif defined GNULIB_POSIXCHECK |
| 1418 | # undef pthread_mutex_init | ||
| 1417 | # if HAVE_RAW_DECL_PTHREAD_MUTEX_INIT | 1419 | # if HAVE_RAW_DECL_PTHREAD_MUTEX_INIT |
| 1418 | _GL_WARN_ON_USE (pthread_mutex_init, "pthread_mutex_init is not portable - " | 1420 | _GL_WARN_ON_USE (pthread_mutex_init, "pthread_mutex_init is not portable - " |
| 1419 | "use gnulib module pthread-mutex for portability"); | 1421 | "use gnulib module pthread-mutex for portability"); |
| @@ -1440,6 +1442,7 @@ _GL_CXXALIAS_SYS (pthread_mutexattr_init, int, (pthread_mutexattr_t *attr)); | |||
| 1440 | _GL_CXXALIASWARN (pthread_mutexattr_init); | 1442 | _GL_CXXALIASWARN (pthread_mutexattr_init); |
| 1441 | # endif | 1443 | # endif |
| 1442 | #elif defined GNULIB_POSIXCHECK | 1444 | #elif defined GNULIB_POSIXCHECK |
| 1445 | # undef pthread_mutexattr_init | ||
| 1443 | # if HAVE_RAW_DECL_PTHREAD_MUTEXATTR_INIT | 1446 | # if HAVE_RAW_DECL_PTHREAD_MUTEXATTR_INIT |
| 1444 | _GL_WARN_ON_USE (pthread_mutexattr_init, "pthread_mutexattr_init is not portable - " | 1447 | _GL_WARN_ON_USE (pthread_mutexattr_init, "pthread_mutexattr_init is not portable - " |
| 1445 | "use gnulib module pthread-mutex for portability"); | 1448 | "use gnulib module pthread-mutex for portability"); |
| @@ -1476,6 +1479,7 @@ _GL_CXXALIAS_SYS_CAST (pthread_mutexattr_gettype, int, | |||
| 1476 | _GL_CXXALIASWARN (pthread_mutexattr_gettype); | 1479 | _GL_CXXALIASWARN (pthread_mutexattr_gettype); |
| 1477 | # endif | 1480 | # endif |
| 1478 | #elif defined GNULIB_POSIXCHECK | 1481 | #elif defined GNULIB_POSIXCHECK |
| 1482 | # undef pthread_mutexattr_gettype | ||
| 1479 | # if HAVE_RAW_DECL_PTHREAD_MUTEXATTR_GETTYPE | 1483 | # if HAVE_RAW_DECL_PTHREAD_MUTEXATTR_GETTYPE |
| 1480 | _GL_WARN_ON_USE (pthread_mutexattr_gettype, "pthread_mutexattr_gettype is not portable - " | 1484 | _GL_WARN_ON_USE (pthread_mutexattr_gettype, "pthread_mutexattr_gettype is not portable - " |
| 1481 | "use gnulib module pthread-mutex for portability"); | 1485 | "use gnulib module pthread-mutex for portability"); |
| @@ -1504,6 +1508,7 @@ _GL_CXXALIAS_SYS (pthread_mutexattr_settype, int, | |||
| 1504 | _GL_CXXALIASWARN (pthread_mutexattr_settype); | 1508 | _GL_CXXALIASWARN (pthread_mutexattr_settype); |
| 1505 | # endif | 1509 | # endif |
| 1506 | #elif defined GNULIB_POSIXCHECK | 1510 | #elif defined GNULIB_POSIXCHECK |
| 1511 | # undef pthread_mutexattr_settype | ||
| 1507 | # if HAVE_RAW_DECL_PTHREAD_MUTEXATTR_SETTYPE | 1512 | # if HAVE_RAW_DECL_PTHREAD_MUTEXATTR_SETTYPE |
| 1508 | _GL_WARN_ON_USE (pthread_mutexattr_settype, "pthread_mutexattr_settype is not portable - " | 1513 | _GL_WARN_ON_USE (pthread_mutexattr_settype, "pthread_mutexattr_settype is not portable - " |
| 1509 | "use gnulib module pthread-mutex for portability"); | 1514 | "use gnulib module pthread-mutex for portability"); |
| @@ -1540,6 +1545,7 @@ _GL_CXXALIAS_SYS_CAST (pthread_mutexattr_getrobust, int, | |||
| 1540 | _GL_CXXALIASWARN (pthread_mutexattr_getrobust); | 1545 | _GL_CXXALIASWARN (pthread_mutexattr_getrobust); |
| 1541 | # endif | 1546 | # endif |
| 1542 | #elif defined GNULIB_POSIXCHECK | 1547 | #elif defined GNULIB_POSIXCHECK |
| 1548 | # undef pthread_mutexattr_getrobust | ||
| 1543 | # if HAVE_RAW_DECL_PTHREAD_MUTEXATTR_GETROBUST | 1549 | # if HAVE_RAW_DECL_PTHREAD_MUTEXATTR_GETROBUST |
| 1544 | _GL_WARN_ON_USE (pthread_mutexattr_getrobust, "pthread_mutexattr_getrobust is not portable - " | 1550 | _GL_WARN_ON_USE (pthread_mutexattr_getrobust, "pthread_mutexattr_getrobust is not portable - " |
| 1545 | "use gnulib module pthread-mutex for portability"); | 1551 | "use gnulib module pthread-mutex for portability"); |
| @@ -1570,6 +1576,7 @@ _GL_CXXALIAS_SYS (pthread_mutexattr_setrobust, int, | |||
| 1570 | _GL_CXXALIASWARN (pthread_mutexattr_setrobust); | 1576 | _GL_CXXALIASWARN (pthread_mutexattr_setrobust); |
| 1571 | # endif | 1577 | # endif |
| 1572 | #elif defined GNULIB_POSIXCHECK | 1578 | #elif defined GNULIB_POSIXCHECK |
| 1579 | # undef pthread_mutexattr_setrobust | ||
| 1573 | # if HAVE_RAW_DECL_PTHREAD_MUTEXATTR_SETROBUST | 1580 | # if HAVE_RAW_DECL_PTHREAD_MUTEXATTR_SETROBUST |
| 1574 | _GL_WARN_ON_USE (pthread_mutexattr_setrobust, "pthread_mutexattr_setrobust is not portable - " | 1581 | _GL_WARN_ON_USE (pthread_mutexattr_setrobust, "pthread_mutexattr_setrobust is not portable - " |
| 1575 | "use gnulib module pthread-mutex for portability"); | 1582 | "use gnulib module pthread-mutex for portability"); |
| @@ -1596,6 +1603,7 @@ _GL_CXXALIAS_SYS (pthread_mutexattr_destroy, int, (pthread_mutexattr_t *attr)); | |||
| 1596 | _GL_CXXALIASWARN (pthread_mutexattr_destroy); | 1603 | _GL_CXXALIASWARN (pthread_mutexattr_destroy); |
| 1597 | # endif | 1604 | # endif |
| 1598 | #elif defined GNULIB_POSIXCHECK | 1605 | #elif defined GNULIB_POSIXCHECK |
| 1606 | # undef pthread_mutexattr_destroy | ||
| 1599 | # if HAVE_RAW_DECL_PTHREAD_MUTEXATTR_DESTROY | 1607 | # if HAVE_RAW_DECL_PTHREAD_MUTEXATTR_DESTROY |
| 1600 | _GL_WARN_ON_USE (pthread_mutexattr_destroy, "pthread_mutexattr_destroy is not portable - " | 1608 | _GL_WARN_ON_USE (pthread_mutexattr_destroy, "pthread_mutexattr_destroy is not portable - " |
| 1601 | "use gnulib module pthread-mutex for portability"); | 1609 | "use gnulib module pthread-mutex for portability"); |
| @@ -1622,6 +1630,7 @@ _GL_CXXALIAS_SYS (pthread_mutex_lock, int, (pthread_mutex_t *mutex)); | |||
| 1622 | _GL_CXXALIASWARN (pthread_mutex_lock); | 1630 | _GL_CXXALIASWARN (pthread_mutex_lock); |
| 1623 | # endif | 1631 | # endif |
| 1624 | #elif defined GNULIB_POSIXCHECK | 1632 | #elif defined GNULIB_POSIXCHECK |
| 1633 | # undef pthread_mutex_lock | ||
| 1625 | # if HAVE_RAW_DECL_PTHREAD_MUTEX_LOCK | 1634 | # if HAVE_RAW_DECL_PTHREAD_MUTEX_LOCK |
| 1626 | _GL_WARN_ON_USE (pthread_mutex_lock, "pthread_mutex_lock is not portable - " | 1635 | _GL_WARN_ON_USE (pthread_mutex_lock, "pthread_mutex_lock is not portable - " |
| 1627 | "use gnulib module pthread-mutex for portability"); | 1636 | "use gnulib module pthread-mutex for portability"); |
| @@ -1648,6 +1657,7 @@ _GL_CXXALIAS_SYS (pthread_mutex_trylock, int, (pthread_mutex_t *mutex)); | |||
| 1648 | _GL_CXXALIASWARN (pthread_mutex_trylock); | 1657 | _GL_CXXALIASWARN (pthread_mutex_trylock); |
| 1649 | # endif | 1658 | # endif |
| 1650 | #elif defined GNULIB_POSIXCHECK | 1659 | #elif defined GNULIB_POSIXCHECK |
| 1660 | # undef pthread_mutex_trylock | ||
| 1651 | # if HAVE_RAW_DECL_PTHREAD_MUTEX_TRYLOCK | 1661 | # if HAVE_RAW_DECL_PTHREAD_MUTEX_TRYLOCK |
| 1652 | _GL_WARN_ON_USE (pthread_mutex_trylock, "pthread_mutex_trylock is not portable - " | 1662 | _GL_WARN_ON_USE (pthread_mutex_trylock, "pthread_mutex_trylock is not portable - " |
| 1653 | "use gnulib module pthread-mutex for portability"); | 1663 | "use gnulib module pthread-mutex for portability"); |
| @@ -1682,6 +1692,7 @@ _GL_CXXALIAS_SYS (pthread_mutex_timedlock, int, | |||
| 1682 | _GL_CXXALIASWARN (pthread_mutex_timedlock); | 1692 | _GL_CXXALIASWARN (pthread_mutex_timedlock); |
| 1683 | # endif | 1693 | # endif |
| 1684 | #elif defined GNULIB_POSIXCHECK | 1694 | #elif defined GNULIB_POSIXCHECK |
| 1695 | # undef pthread_mutex_timedlock | ||
| 1685 | # if HAVE_RAW_DECL_PTHREAD_MUTEX_TIMEDLOCK | 1696 | # if HAVE_RAW_DECL_PTHREAD_MUTEX_TIMEDLOCK |
| 1686 | _GL_WARN_ON_USE (pthread_mutex_timedlock, "pthread_mutex_timedlock is not portable - " | 1697 | _GL_WARN_ON_USE (pthread_mutex_timedlock, "pthread_mutex_timedlock is not portable - " |
| 1687 | "use gnulib module pthread_mutex_timedlock for portability"); | 1698 | "use gnulib module pthread_mutex_timedlock for portability"); |
| @@ -1708,6 +1719,7 @@ _GL_CXXALIAS_SYS (pthread_mutex_unlock, int, (pthread_mutex_t *mutex)); | |||
| 1708 | _GL_CXXALIASWARN (pthread_mutex_unlock); | 1719 | _GL_CXXALIASWARN (pthread_mutex_unlock); |
| 1709 | # endif | 1720 | # endif |
| 1710 | #elif defined GNULIB_POSIXCHECK | 1721 | #elif defined GNULIB_POSIXCHECK |
| 1722 | # undef pthread_mutex_unlock | ||
| 1711 | # if HAVE_RAW_DECL_PTHREAD_MUTEX_UNLOCK | 1723 | # if HAVE_RAW_DECL_PTHREAD_MUTEX_UNLOCK |
| 1712 | _GL_WARN_ON_USE (pthread_mutex_unlock, "pthread_mutex_unlock is not portable - " | 1724 | _GL_WARN_ON_USE (pthread_mutex_unlock, "pthread_mutex_unlock is not portable - " |
| 1713 | "use gnulib module pthread-mutex for portability"); | 1725 | "use gnulib module pthread-mutex for portability"); |
| @@ -1734,6 +1746,7 @@ _GL_CXXALIAS_SYS (pthread_mutex_destroy, int, (pthread_mutex_t *mutex)); | |||
| 1734 | _GL_CXXALIASWARN (pthread_mutex_destroy); | 1746 | _GL_CXXALIASWARN (pthread_mutex_destroy); |
| 1735 | # endif | 1747 | # endif |
| 1736 | #elif defined GNULIB_POSIXCHECK | 1748 | #elif defined GNULIB_POSIXCHECK |
| 1749 | # undef pthread_mutex_destroy | ||
| 1737 | # if HAVE_RAW_DECL_PTHREAD_MUTEX_DESTROY | 1750 | # if HAVE_RAW_DECL_PTHREAD_MUTEX_DESTROY |
| 1738 | _GL_WARN_ON_USE (pthread_mutex_destroy, "pthread_mutex_destroy is not portable - " | 1751 | _GL_WARN_ON_USE (pthread_mutex_destroy, "pthread_mutex_destroy is not portable - " |
| 1739 | "use gnulib module pthread-mutex for portability"); | 1752 | "use gnulib module pthread-mutex for portability"); |
| @@ -1770,6 +1783,7 @@ _GL_CXXALIAS_SYS (pthread_rwlock_init, int, | |||
| 1770 | _GL_CXXALIASWARN (pthread_rwlock_init); | 1783 | _GL_CXXALIASWARN (pthread_rwlock_init); |
| 1771 | # endif | 1784 | # endif |
| 1772 | #elif defined GNULIB_POSIXCHECK | 1785 | #elif defined GNULIB_POSIXCHECK |
| 1786 | # undef pthread_rwlock_init | ||
| 1773 | # if HAVE_RAW_DECL_PTHREAD_RWLOCK_INIT | 1787 | # if HAVE_RAW_DECL_PTHREAD_RWLOCK_INIT |
| 1774 | _GL_WARN_ON_USE (pthread_rwlock_init, "pthread_rwlock_init is not portable - " | 1788 | _GL_WARN_ON_USE (pthread_rwlock_init, "pthread_rwlock_init is not portable - " |
| 1775 | "use gnulib module pthread-rwlock for portability"); | 1789 | "use gnulib module pthread-rwlock for portability"); |
| @@ -1796,6 +1810,7 @@ _GL_CXXALIAS_SYS (pthread_rwlockattr_init, int, (pthread_rwlockattr_t *attr)); | |||
| 1796 | _GL_CXXALIASWARN (pthread_rwlockattr_init); | 1810 | _GL_CXXALIASWARN (pthread_rwlockattr_init); |
| 1797 | # endif | 1811 | # endif |
| 1798 | #elif defined GNULIB_POSIXCHECK | 1812 | #elif defined GNULIB_POSIXCHECK |
| 1813 | # undef pthread_rwlockattr_init | ||
| 1799 | # if HAVE_RAW_DECL_PTHREAD_RWLOCKATTR_INIT | 1814 | # if HAVE_RAW_DECL_PTHREAD_RWLOCKATTR_INIT |
| 1800 | _GL_WARN_ON_USE (pthread_rwlockattr_init, "pthread_rwlockattr_init is not portable - " | 1815 | _GL_WARN_ON_USE (pthread_rwlockattr_init, "pthread_rwlockattr_init is not portable - " |
| 1801 | "use gnulib module pthread-rwlock for portability"); | 1816 | "use gnulib module pthread-rwlock for portability"); |
| @@ -1824,6 +1839,7 @@ _GL_CXXALIAS_SYS (pthread_rwlockattr_destroy, int, | |||
| 1824 | _GL_CXXALIASWARN (pthread_rwlockattr_destroy); | 1839 | _GL_CXXALIASWARN (pthread_rwlockattr_destroy); |
| 1825 | # endif | 1840 | # endif |
| 1826 | #elif defined GNULIB_POSIXCHECK | 1841 | #elif defined GNULIB_POSIXCHECK |
| 1842 | # undef pthread_rwlockattr_destroy | ||
| 1827 | # if HAVE_RAW_DECL_PTHREAD_RWLOCKATTR_DESTROY | 1843 | # if HAVE_RAW_DECL_PTHREAD_RWLOCKATTR_DESTROY |
| 1828 | _GL_WARN_ON_USE (pthread_rwlockattr_destroy, "pthread_rwlockattr_destroy is not portable - " | 1844 | _GL_WARN_ON_USE (pthread_rwlockattr_destroy, "pthread_rwlockattr_destroy is not portable - " |
| 1829 | "use gnulib module pthread-rwlock for portability"); | 1845 | "use gnulib module pthread-rwlock for portability"); |
| @@ -1850,6 +1866,7 @@ _GL_CXXALIAS_SYS (pthread_rwlock_rdlock, int, (pthread_rwlock_t *lock)); | |||
| 1850 | _GL_CXXALIASWARN (pthread_rwlock_rdlock); | 1866 | _GL_CXXALIASWARN (pthread_rwlock_rdlock); |
| 1851 | # endif | 1867 | # endif |
| 1852 | #elif defined GNULIB_POSIXCHECK | 1868 | #elif defined GNULIB_POSIXCHECK |
| 1869 | # undef pthread_rwlock_rdlock | ||
| 1853 | # if HAVE_RAW_DECL_PTHREAD_RWLOCK_RDLOCK | 1870 | # if HAVE_RAW_DECL_PTHREAD_RWLOCK_RDLOCK |
| 1854 | _GL_WARN_ON_USE (pthread_rwlock_rdlock, "pthread_rwlock_rdlock is not portable - " | 1871 | _GL_WARN_ON_USE (pthread_rwlock_rdlock, "pthread_rwlock_rdlock is not portable - " |
| 1855 | "use gnulib module pthread-rwlock for portability"); | 1872 | "use gnulib module pthread-rwlock for portability"); |
| @@ -1876,6 +1893,7 @@ _GL_CXXALIAS_SYS (pthread_rwlock_wrlock, int, (pthread_rwlock_t *lock)); | |||
| 1876 | _GL_CXXALIASWARN (pthread_rwlock_wrlock); | 1893 | _GL_CXXALIASWARN (pthread_rwlock_wrlock); |
| 1877 | # endif | 1894 | # endif |
| 1878 | #elif defined GNULIB_POSIXCHECK | 1895 | #elif defined GNULIB_POSIXCHECK |
| 1896 | # undef pthread_rwlock_wrlock | ||
| 1879 | # if HAVE_RAW_DECL_PTHREAD_RWLOCK_WRLOCK | 1897 | # if HAVE_RAW_DECL_PTHREAD_RWLOCK_WRLOCK |
| 1880 | _GL_WARN_ON_USE (pthread_rwlock_wrlock, "pthread_rwlock_wrlock is not portable - " | 1898 | _GL_WARN_ON_USE (pthread_rwlock_wrlock, "pthread_rwlock_wrlock is not portable - " |
| 1881 | "use gnulib module pthread-rwlock for portability"); | 1899 | "use gnulib module pthread-rwlock for portability"); |
| @@ -1902,6 +1920,7 @@ _GL_CXXALIAS_SYS (pthread_rwlock_tryrdlock, int, (pthread_rwlock_t *lock)); | |||
| 1902 | _GL_CXXALIASWARN (pthread_rwlock_tryrdlock); | 1920 | _GL_CXXALIASWARN (pthread_rwlock_tryrdlock); |
| 1903 | # endif | 1921 | # endif |
| 1904 | #elif defined GNULIB_POSIXCHECK | 1922 | #elif defined GNULIB_POSIXCHECK |
| 1923 | # undef pthread_rwlock_tryrdlock | ||
| 1905 | # if HAVE_RAW_DECL_PTHREAD_RWLOCK_TRYRDLOCK | 1924 | # if HAVE_RAW_DECL_PTHREAD_RWLOCK_TRYRDLOCK |
| 1906 | _GL_WARN_ON_USE (pthread_rwlock_tryrdlock, "pthread_rwlock_tryrdlock is not portable - " | 1925 | _GL_WARN_ON_USE (pthread_rwlock_tryrdlock, "pthread_rwlock_tryrdlock is not portable - " |
| 1907 | "use gnulib module pthread-rwlock for portability"); | 1926 | "use gnulib module pthread-rwlock for portability"); |
| @@ -1928,6 +1947,7 @@ _GL_CXXALIAS_SYS (pthread_rwlock_trywrlock, int, (pthread_rwlock_t *lock)); | |||
| 1928 | _GL_CXXALIASWARN (pthread_rwlock_trywrlock); | 1947 | _GL_CXXALIASWARN (pthread_rwlock_trywrlock); |
| 1929 | # endif | 1948 | # endif |
| 1930 | #elif defined GNULIB_POSIXCHECK | 1949 | #elif defined GNULIB_POSIXCHECK |
| 1950 | # undef pthread_rwlock_trywrlock | ||
| 1931 | # if HAVE_RAW_DECL_PTHREAD_RWLOCK_TRYWRLOCK | 1951 | # if HAVE_RAW_DECL_PTHREAD_RWLOCK_TRYWRLOCK |
| 1932 | _GL_WARN_ON_USE (pthread_rwlock_trywrlock, "pthread_rwlock_trywrlock is not portable - " | 1952 | _GL_WARN_ON_USE (pthread_rwlock_trywrlock, "pthread_rwlock_trywrlock is not portable - " |
| 1933 | "use gnulib module pthread-rwlock for portability"); | 1953 | "use gnulib module pthread-rwlock for portability"); |
| @@ -1962,6 +1982,7 @@ _GL_CXXALIAS_SYS (pthread_rwlock_timedrdlock, int, | |||
| 1962 | _GL_CXXALIASWARN (pthread_rwlock_timedrdlock); | 1982 | _GL_CXXALIASWARN (pthread_rwlock_timedrdlock); |
| 1963 | # endif | 1983 | # endif |
| 1964 | #elif defined GNULIB_POSIXCHECK | 1984 | #elif defined GNULIB_POSIXCHECK |
| 1985 | # undef pthread_rwlock_timedrdlock | ||
| 1965 | # if HAVE_RAW_DECL_PTHREAD_RWLOCK_TIMEDRDLOCK | 1986 | # if HAVE_RAW_DECL_PTHREAD_RWLOCK_TIMEDRDLOCK |
| 1966 | _GL_WARN_ON_USE (pthread_rwlock_timedrdlock, "pthread_rwlock_timedrdlock is not portable - " | 1987 | _GL_WARN_ON_USE (pthread_rwlock_timedrdlock, "pthread_rwlock_timedrdlock is not portable - " |
| 1967 | "use gnulib module pthread-rwlock for portability"); | 1988 | "use gnulib module pthread-rwlock for portability"); |
| @@ -1996,6 +2017,7 @@ _GL_CXXALIAS_SYS (pthread_rwlock_timedwrlock, int, | |||
| 1996 | _GL_CXXALIASWARN (pthread_rwlock_timedwrlock); | 2017 | _GL_CXXALIASWARN (pthread_rwlock_timedwrlock); |
| 1997 | # endif | 2018 | # endif |
| 1998 | #elif defined GNULIB_POSIXCHECK | 2019 | #elif defined GNULIB_POSIXCHECK |
| 2020 | # undef pthread_rwlock_timedwrlock | ||
| 1999 | # if HAVE_RAW_DECL_PTHREAD_RWLOCK_TIMEDWRLOCK | 2021 | # if HAVE_RAW_DECL_PTHREAD_RWLOCK_TIMEDWRLOCK |
| 2000 | _GL_WARN_ON_USE (pthread_rwlock_timedwrlock, "pthread_rwlock_timedwrlock is not portable - " | 2022 | _GL_WARN_ON_USE (pthread_rwlock_timedwrlock, "pthread_rwlock_timedwrlock is not portable - " |
| 2001 | "use gnulib module pthread-rwlock for portability"); | 2023 | "use gnulib module pthread-rwlock for portability"); |
| @@ -2022,6 +2044,7 @@ _GL_CXXALIAS_SYS (pthread_rwlock_unlock, int, (pthread_rwlock_t *lock)); | |||
| 2022 | _GL_CXXALIASWARN (pthread_rwlock_unlock); | 2044 | _GL_CXXALIASWARN (pthread_rwlock_unlock); |
| 2023 | # endif | 2045 | # endif |
| 2024 | #elif defined GNULIB_POSIXCHECK | 2046 | #elif defined GNULIB_POSIXCHECK |
| 2047 | # undef pthread_rwlock_unlock | ||
| 2025 | # if HAVE_RAW_DECL_PTHREAD_RWLOCK_UNLOCK | 2048 | # if HAVE_RAW_DECL_PTHREAD_RWLOCK_UNLOCK |
| 2026 | _GL_WARN_ON_USE (pthread_rwlock_unlock, "pthread_rwlock_unlock is not portable - " | 2049 | _GL_WARN_ON_USE (pthread_rwlock_unlock, "pthread_rwlock_unlock is not portable - " |
| 2027 | "use gnulib module pthread-rwlock for portability"); | 2050 | "use gnulib module pthread-rwlock for portability"); |
| @@ -2048,6 +2071,7 @@ _GL_CXXALIAS_SYS (pthread_rwlock_destroy, int, (pthread_rwlock_t *lock)); | |||
| 2048 | _GL_CXXALIASWARN (pthread_rwlock_destroy); | 2071 | _GL_CXXALIASWARN (pthread_rwlock_destroy); |
| 2049 | # endif | 2072 | # endif |
| 2050 | #elif defined GNULIB_POSIXCHECK | 2073 | #elif defined GNULIB_POSIXCHECK |
| 2074 | # undef pthread_rwlock_destroy | ||
| 2051 | # if HAVE_RAW_DECL_PTHREAD_RWLOCK_DESTROY | 2075 | # if HAVE_RAW_DECL_PTHREAD_RWLOCK_DESTROY |
| 2052 | _GL_WARN_ON_USE (pthread_rwlock_destroy, "pthread_rwlock_destroy is not portable - " | 2076 | _GL_WARN_ON_USE (pthread_rwlock_destroy, "pthread_rwlock_destroy is not portable - " |
| 2053 | "use gnulib module pthread-rwlock for portability"); | 2077 | "use gnulib module pthread-rwlock for portability"); |
| @@ -2084,6 +2108,7 @@ _GL_CXXALIAS_SYS (pthread_cond_init, int, | |||
| 2084 | _GL_CXXALIASWARN (pthread_cond_init); | 2108 | _GL_CXXALIASWARN (pthread_cond_init); |
| 2085 | # endif | 2109 | # endif |
| 2086 | #elif defined GNULIB_POSIXCHECK | 2110 | #elif defined GNULIB_POSIXCHECK |
| 2111 | # undef pthread_cond_init | ||
| 2087 | # if HAVE_RAW_DECL_PTHREAD_COND_INIT | 2112 | # if HAVE_RAW_DECL_PTHREAD_COND_INIT |
| 2088 | _GL_WARN_ON_USE (pthread_cond_init, "pthread_cond_init is not portable - " | 2113 | _GL_WARN_ON_USE (pthread_cond_init, "pthread_cond_init is not portable - " |
| 2089 | "use gnulib module pthread-cond for portability"); | 2114 | "use gnulib module pthread-cond for portability"); |
| @@ -2110,6 +2135,7 @@ _GL_CXXALIAS_SYS (pthread_condattr_init, int, (pthread_condattr_t *attr)); | |||
| 2110 | _GL_CXXALIASWARN (pthread_condattr_init); | 2135 | _GL_CXXALIASWARN (pthread_condattr_init); |
| 2111 | # endif | 2136 | # endif |
| 2112 | #elif defined GNULIB_POSIXCHECK | 2137 | #elif defined GNULIB_POSIXCHECK |
| 2138 | # undef pthread_condattr_init | ||
| 2113 | # if HAVE_RAW_DECL_PTHREAD_CONDATTR_INIT | 2139 | # if HAVE_RAW_DECL_PTHREAD_CONDATTR_INIT |
| 2114 | _GL_WARN_ON_USE (pthread_condattr_init, "pthread_condattr_init is not portable - " | 2140 | _GL_WARN_ON_USE (pthread_condattr_init, "pthread_condattr_init is not portable - " |
| 2115 | "use gnulib module pthread-cond for portability"); | 2141 | "use gnulib module pthread-cond for portability"); |
| @@ -2136,6 +2162,7 @@ _GL_CXXALIAS_SYS (pthread_condattr_destroy, int, (pthread_condattr_t *attr)); | |||
| 2136 | _GL_CXXALIASWARN (pthread_condattr_destroy); | 2162 | _GL_CXXALIASWARN (pthread_condattr_destroy); |
| 2137 | # endif | 2163 | # endif |
| 2138 | #elif defined GNULIB_POSIXCHECK | 2164 | #elif defined GNULIB_POSIXCHECK |
| 2165 | # undef pthread_condattr_destroy | ||
| 2139 | # if HAVE_RAW_DECL_PTHREAD_CONDATTR_DESTROY | 2166 | # if HAVE_RAW_DECL_PTHREAD_CONDATTR_DESTROY |
| 2140 | _GL_WARN_ON_USE (pthread_condattr_destroy, "pthread_condattr_destroy is not portable - " | 2167 | _GL_WARN_ON_USE (pthread_condattr_destroy, "pthread_condattr_destroy is not portable - " |
| 2141 | "use gnulib module pthread-cond for portability"); | 2168 | "use gnulib module pthread-cond for portability"); |
| @@ -2170,6 +2197,7 @@ _GL_CXXALIAS_SYS (pthread_cond_wait, int, | |||
| 2170 | _GL_CXXALIASWARN (pthread_cond_wait); | 2197 | _GL_CXXALIASWARN (pthread_cond_wait); |
| 2171 | # endif | 2198 | # endif |
| 2172 | #elif defined GNULIB_POSIXCHECK | 2199 | #elif defined GNULIB_POSIXCHECK |
| 2200 | # undef pthread_cond_wait | ||
| 2173 | # if HAVE_RAW_DECL_PTHREAD_COND_WAIT | 2201 | # if HAVE_RAW_DECL_PTHREAD_COND_WAIT |
| 2174 | _GL_WARN_ON_USE (pthread_cond_wait, "pthread_cond_wait is not portable - " | 2202 | _GL_WARN_ON_USE (pthread_cond_wait, "pthread_cond_wait is not portable - " |
| 2175 | "use gnulib module pthread-cond for portability"); | 2203 | "use gnulib module pthread-cond for portability"); |
| @@ -2208,6 +2236,7 @@ _GL_CXXALIAS_SYS (pthread_cond_timedwait, int, | |||
| 2208 | _GL_CXXALIASWARN (pthread_cond_timedwait); | 2236 | _GL_CXXALIASWARN (pthread_cond_timedwait); |
| 2209 | # endif | 2237 | # endif |
| 2210 | #elif defined GNULIB_POSIXCHECK | 2238 | #elif defined GNULIB_POSIXCHECK |
| 2239 | # undef pthread_cond_timedwait | ||
| 2211 | # if HAVE_RAW_DECL_PTHREAD_COND_TIMEDWAIT | 2240 | # if HAVE_RAW_DECL_PTHREAD_COND_TIMEDWAIT |
| 2212 | _GL_WARN_ON_USE (pthread_cond_timedwait, "pthread_cond_timedwait is not portable - " | 2241 | _GL_WARN_ON_USE (pthread_cond_timedwait, "pthread_cond_timedwait is not portable - " |
| 2213 | "use gnulib module pthread-cond for portability"); | 2242 | "use gnulib module pthread-cond for portability"); |
| @@ -2234,6 +2263,7 @@ _GL_CXXALIAS_SYS (pthread_cond_signal, int, (pthread_cond_t *cond)); | |||
| 2234 | _GL_CXXALIASWARN (pthread_cond_signal); | 2263 | _GL_CXXALIASWARN (pthread_cond_signal); |
| 2235 | # endif | 2264 | # endif |
| 2236 | #elif defined GNULIB_POSIXCHECK | 2265 | #elif defined GNULIB_POSIXCHECK |
| 2266 | # undef pthread_cond_signal | ||
| 2237 | # if HAVE_RAW_DECL_PTHREAD_COND_SIGNAL | 2267 | # if HAVE_RAW_DECL_PTHREAD_COND_SIGNAL |
| 2238 | _GL_WARN_ON_USE (pthread_cond_signal, "pthread_cond_signal is not portable - " | 2268 | _GL_WARN_ON_USE (pthread_cond_signal, "pthread_cond_signal is not portable - " |
| 2239 | "use gnulib module pthread-cond for portability"); | 2269 | "use gnulib module pthread-cond for portability"); |
| @@ -2260,6 +2290,7 @@ _GL_CXXALIAS_SYS (pthread_cond_broadcast, int, (pthread_cond_t *cond)); | |||
| 2260 | _GL_CXXALIASWARN (pthread_cond_broadcast); | 2290 | _GL_CXXALIASWARN (pthread_cond_broadcast); |
| 2261 | # endif | 2291 | # endif |
| 2262 | #elif defined GNULIB_POSIXCHECK | 2292 | #elif defined GNULIB_POSIXCHECK |
| 2293 | # undef pthread_cond_broadcast | ||
| 2263 | # if HAVE_RAW_DECL_PTHREAD_COND_BROADCAST | 2294 | # if HAVE_RAW_DECL_PTHREAD_COND_BROADCAST |
| 2264 | _GL_WARN_ON_USE (pthread_cond_broadcast, "pthread_cond_broadcast is not portable - " | 2295 | _GL_WARN_ON_USE (pthread_cond_broadcast, "pthread_cond_broadcast is not portable - " |
| 2265 | "use gnulib module pthread-cond for portability"); | 2296 | "use gnulib module pthread-cond for portability"); |
| @@ -2286,6 +2317,7 @@ _GL_CXXALIAS_SYS (pthread_cond_destroy, int, (pthread_cond_t *cond)); | |||
| 2286 | _GL_CXXALIASWARN (pthread_cond_destroy); | 2317 | _GL_CXXALIASWARN (pthread_cond_destroy); |
| 2287 | # endif | 2318 | # endif |
| 2288 | #elif defined GNULIB_POSIXCHECK | 2319 | #elif defined GNULIB_POSIXCHECK |
| 2320 | # undef pthread_cond_destroy | ||
| 2289 | # if HAVE_RAW_DECL_PTHREAD_COND_DESTROY | 2321 | # if HAVE_RAW_DECL_PTHREAD_COND_DESTROY |
| 2290 | _GL_WARN_ON_USE (pthread_cond_destroy, "pthread_cond_destroy is not portable - " | 2322 | _GL_WARN_ON_USE (pthread_cond_destroy, "pthread_cond_destroy is not portable - " |
| 2291 | "use gnulib module pthread-cond for portability"); | 2323 | "use gnulib module pthread-cond for portability"); |
| @@ -2318,6 +2350,7 @@ _GL_CXXALIAS_SYS_CAST (pthread_key_create, int, | |||
| 2318 | _GL_CXXALIASWARN (pthread_key_create); | 2350 | _GL_CXXALIASWARN (pthread_key_create); |
| 2319 | # endif | 2351 | # endif |
| 2320 | #elif defined GNULIB_POSIXCHECK | 2352 | #elif defined GNULIB_POSIXCHECK |
| 2353 | # undef pthread_key_create | ||
| 2321 | # if HAVE_RAW_DECL_PTHREAD_KEY_CREATE | 2354 | # if HAVE_RAW_DECL_PTHREAD_KEY_CREATE |
| 2322 | _GL_WARN_ON_USE (pthread_key_create, "pthread_key_create is not portable - " | 2355 | _GL_WARN_ON_USE (pthread_key_create, "pthread_key_create is not portable - " |
| 2323 | "use gnulib module pthread-tss for portability"); | 2356 | "use gnulib module pthread-tss for portability"); |
| @@ -2346,6 +2379,7 @@ _GL_CXXALIAS_SYS (pthread_setspecific, int, | |||
| 2346 | _GL_CXXALIASWARN (pthread_setspecific); | 2379 | _GL_CXXALIASWARN (pthread_setspecific); |
| 2347 | # endif | 2380 | # endif |
| 2348 | #elif defined GNULIB_POSIXCHECK | 2381 | #elif defined GNULIB_POSIXCHECK |
| 2382 | # undef pthread_setspecific | ||
| 2349 | # if HAVE_RAW_DECL_PTHREAD_SETSPECIFIC | 2383 | # if HAVE_RAW_DECL_PTHREAD_SETSPECIFIC |
| 2350 | _GL_WARN_ON_USE (pthread_setspecific, "pthread_setspecific is not portable - " | 2384 | _GL_WARN_ON_USE (pthread_setspecific, "pthread_setspecific is not portable - " |
| 2351 | "use gnulib module pthread-tss for portability"); | 2385 | "use gnulib module pthread-tss for portability"); |
| @@ -2370,6 +2404,7 @@ _GL_CXXALIAS_SYS (pthread_getspecific, void *, (pthread_key_t key)); | |||
| 2370 | _GL_CXXALIASWARN (pthread_getspecific); | 2404 | _GL_CXXALIASWARN (pthread_getspecific); |
| 2371 | # endif | 2405 | # endif |
| 2372 | #elif defined GNULIB_POSIXCHECK | 2406 | #elif defined GNULIB_POSIXCHECK |
| 2407 | # undef pthread_getspecific | ||
| 2373 | # if HAVE_RAW_DECL_PTHREAD_GETSPECIFIC | 2408 | # if HAVE_RAW_DECL_PTHREAD_GETSPECIFIC |
| 2374 | _GL_WARN_ON_USE (pthread_getspecific, "pthread_getspecific is not portable - " | 2409 | _GL_WARN_ON_USE (pthread_getspecific, "pthread_getspecific is not portable - " |
| 2375 | "use gnulib module pthread-tss for portability"); | 2410 | "use gnulib module pthread-tss for portability"); |
| @@ -2394,6 +2429,7 @@ _GL_CXXALIAS_SYS (pthread_key_delete, int, (pthread_key_t key)); | |||
| 2394 | _GL_CXXALIASWARN (pthread_key_delete); | 2429 | _GL_CXXALIASWARN (pthread_key_delete); |
| 2395 | # endif | 2430 | # endif |
| 2396 | #elif defined GNULIB_POSIXCHECK | 2431 | #elif defined GNULIB_POSIXCHECK |
| 2432 | # undef pthread_key_delete | ||
| 2397 | # if HAVE_RAW_DECL_PTHREAD_KEY_DELETE | 2433 | # if HAVE_RAW_DECL_PTHREAD_KEY_DELETE |
| 2398 | _GL_WARN_ON_USE (pthread_key_delete, "pthread_key_delete is not portable - " | 2434 | _GL_WARN_ON_USE (pthread_key_delete, "pthread_key_delete is not portable - " |
| 2399 | "use gnulib module pthread-tss for portability"); | 2435 | "use gnulib module pthread-tss for portability"); |
| @@ -2426,6 +2462,7 @@ _GL_CXXALIAS_SYS (pthread_spin_init, int, | |||
| 2426 | _GL_CXXALIASWARN (pthread_spin_init); | 2462 | _GL_CXXALIASWARN (pthread_spin_init); |
| 2427 | # endif | 2463 | # endif |
| 2428 | #elif defined GNULIB_POSIXCHECK | 2464 | #elif defined GNULIB_POSIXCHECK |
| 2465 | # undef pthread_spin_init | ||
| 2429 | # if HAVE_RAW_DECL_PTHREAD_SPIN_INIT | 2466 | # if HAVE_RAW_DECL_PTHREAD_SPIN_INIT |
| 2430 | _GL_WARN_ON_USE (pthread_spin_init, "pthread_spin_init is not portable - " | 2467 | _GL_WARN_ON_USE (pthread_spin_init, "pthread_spin_init is not portable - " |
| 2431 | "use gnulib module pthread-spin for portability"); | 2468 | "use gnulib module pthread-spin for portability"); |
| @@ -2452,6 +2489,7 @@ _GL_CXXALIAS_SYS (pthread_spin_lock, int, (pthread_spinlock_t *lock)); | |||
| 2452 | _GL_CXXALIASWARN (pthread_spin_lock); | 2489 | _GL_CXXALIASWARN (pthread_spin_lock); |
| 2453 | # endif | 2490 | # endif |
| 2454 | #elif defined GNULIB_POSIXCHECK | 2491 | #elif defined GNULIB_POSIXCHECK |
| 2492 | # undef pthread_spin_lock | ||
| 2455 | # if HAVE_RAW_DECL_PTHREAD_SPIN_LOCK | 2493 | # if HAVE_RAW_DECL_PTHREAD_SPIN_LOCK |
| 2456 | _GL_WARN_ON_USE (pthread_spin_lock, "pthread_spin_lock is not portable - " | 2494 | _GL_WARN_ON_USE (pthread_spin_lock, "pthread_spin_lock is not portable - " |
| 2457 | "use gnulib module pthread-spin for portability"); | 2495 | "use gnulib module pthread-spin for portability"); |
| @@ -2478,6 +2516,7 @@ _GL_CXXALIAS_SYS (pthread_spin_trylock, int, (pthread_spinlock_t *lock)); | |||
| 2478 | _GL_CXXALIASWARN (pthread_spin_trylock); | 2516 | _GL_CXXALIASWARN (pthread_spin_trylock); |
| 2479 | # endif | 2517 | # endif |
| 2480 | #elif defined GNULIB_POSIXCHECK | 2518 | #elif defined GNULIB_POSIXCHECK |
| 2519 | # undef pthread_spin_trylock | ||
| 2481 | # if HAVE_RAW_DECL_PTHREAD_SPIN_TRYLOCK | 2520 | # if HAVE_RAW_DECL_PTHREAD_SPIN_TRYLOCK |
| 2482 | _GL_WARN_ON_USE (pthread_spin_trylock, "pthread_spin_trylock is not portable - " | 2521 | _GL_WARN_ON_USE (pthread_spin_trylock, "pthread_spin_trylock is not portable - " |
| 2483 | "use gnulib module pthread-spin for portability"); | 2522 | "use gnulib module pthread-spin for portability"); |
| @@ -2504,6 +2543,7 @@ _GL_CXXALIAS_SYS (pthread_spin_unlock, int, (pthread_spinlock_t *lock)); | |||
| 2504 | _GL_CXXALIASWARN (pthread_spin_unlock); | 2543 | _GL_CXXALIASWARN (pthread_spin_unlock); |
| 2505 | # endif | 2544 | # endif |
| 2506 | #elif defined GNULIB_POSIXCHECK | 2545 | #elif defined GNULIB_POSIXCHECK |
| 2546 | # undef pthread_spin_unlock | ||
| 2507 | # if HAVE_RAW_DECL_PTHREAD_SPIN_UNLOCK | 2547 | # if HAVE_RAW_DECL_PTHREAD_SPIN_UNLOCK |
| 2508 | _GL_WARN_ON_USE (pthread_spin_unlock, "pthread_spin_unlock is not portable - " | 2548 | _GL_WARN_ON_USE (pthread_spin_unlock, "pthread_spin_unlock is not portable - " |
| 2509 | "use gnulib module pthread-spin for portability"); | 2549 | "use gnulib module pthread-spin for portability"); |
| @@ -2530,6 +2570,7 @@ _GL_CXXALIAS_SYS (pthread_spin_destroy, int, (pthread_spinlock_t *lock)); | |||
| 2530 | _GL_CXXALIASWARN (pthread_spin_destroy); | 2570 | _GL_CXXALIASWARN (pthread_spin_destroy); |
| 2531 | # endif | 2571 | # endif |
| 2532 | #elif defined GNULIB_POSIXCHECK | 2572 | #elif defined GNULIB_POSIXCHECK |
| 2573 | # undef pthread_spin_destroy | ||
| 2533 | # if HAVE_RAW_DECL_PTHREAD_SPIN_DESTROY | 2574 | # if HAVE_RAW_DECL_PTHREAD_SPIN_DESTROY |
| 2534 | _GL_WARN_ON_USE (pthread_spin_destroy, "pthread_spin_destroy is not portable - " | 2575 | _GL_WARN_ON_USE (pthread_spin_destroy, "pthread_spin_destroy is not portable - " |
| 2535 | "use gnulib module pthread-spin for portability"); | 2576 | "use gnulib module pthread-spin for portability"); |
| @@ -47,7 +47,7 @@ | |||
| 47 | 47 | ||
| 48 | /* Get pid_t. | 48 | /* Get pid_t. |
| 49 | This is needed on glibc 2.11 (see | 49 | This is needed on glibc 2.11 (see |
| 50 | glibc bug <https://sourceware.org/PR13198>) | 50 | glibc bug <https://sourceware.org/bugzilla/show_bug.cgi?id=13198>) |
| 51 | and Mac OS X 10.5. */ | 51 | and Mac OS X 10.5. */ |
| 52 | #include <sys/types.h> | 52 | #include <sys/types.h> |
| 53 | 53 | ||
| @@ -191,16 +191,6 @@ | |||
| 191 | #define _GL_FUNCDECL_RPL_1(rpl_func,rettype,parameters,...) \ | 191 | #define _GL_FUNCDECL_RPL_1(rpl_func,rettype,parameters,...) \ |
| 192 | _GL_EXTERN_C_FUNC __VA_ARGS__ rettype rpl_func parameters | 192 | _GL_EXTERN_C_FUNC __VA_ARGS__ rettype rpl_func parameters |
| 193 | 193 | ||
| 194 | /* _GL_FUNCDECL_SYS_NAME (func) expands to plain func if C++, and to | ||
| 195 | parenthesized func otherwise. Parenthesization is needed in C23 if | ||
| 196 | the function is like strchr and so is a qualifier-generic macro | ||
| 197 | that expands to something more complicated. */ | ||
| 198 | #ifdef __cplusplus | ||
| 199 | # define _GL_FUNCDECL_SYS_NAME(func) func | ||
| 200 | #else | ||
| 201 | # define _GL_FUNCDECL_SYS_NAME(func) (func) | ||
| 202 | #endif | ||
| 203 | |||
| 204 | /* _GL_FUNCDECL_SYS (func, rettype, parameters, [attributes]); | 194 | /* _GL_FUNCDECL_SYS (func, rettype, parameters, [attributes]); |
| 205 | declares the system function, named func, with the given prototype, | 195 | declares the system function, named func, with the given prototype, |
| 206 | consisting of return type, parameters, and attributes. | 196 | consisting of return type, parameters, and attributes. |
| @@ -213,7 +203,7 @@ | |||
| 213 | _GL_FUNCDECL_SYS (posix_openpt, int, (int flags), _GL_ATTRIBUTE_NODISCARD); | 203 | _GL_FUNCDECL_SYS (posix_openpt, int, (int flags), _GL_ATTRIBUTE_NODISCARD); |
| 214 | */ | 204 | */ |
| 215 | #define _GL_FUNCDECL_SYS(func,rettype,parameters,...) \ | 205 | #define _GL_FUNCDECL_SYS(func,rettype,parameters,...) \ |
| 216 | _GL_EXTERN_C_FUNC __VA_ARGS__ rettype _GL_FUNCDECL_SYS_NAME (func) parameters | 206 | _GL_EXTERN_C_FUNC __VA_ARGS__ rettype func parameters |
| 217 | 207 | ||
| 218 | /* _GL_CXXALIAS_RPL (func, rettype, parameters); | 208 | /* _GL_CXXALIAS_RPL (func, rettype, parameters); |
| 219 | declares a C++ alias called GNULIB_NAMESPACE::func | 209 | declares a C++ alias called GNULIB_NAMESPACE::func |
| @@ -384,7 +374,7 @@ | |||
| 384 | _GL_CXXALIASWARN_1 (func, GNULIB_NAMESPACE) | 374 | _GL_CXXALIASWARN_1 (func, GNULIB_NAMESPACE) |
| 385 | # define _GL_CXXALIASWARN_1(func,namespace) \ | 375 | # define _GL_CXXALIASWARN_1(func,namespace) \ |
| 386 | _GL_CXXALIASWARN_2 (func, namespace) | 376 | _GL_CXXALIASWARN_2 (func, namespace) |
| 387 | /* To work around GCC bug <https://gcc.gnu.org/PR43881>, | 377 | /* To work around GCC bug <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=43881>, |
| 388 | we enable the warning only when not optimizing. */ | 378 | we enable the warning only when not optimizing. */ |
| 389 | # if !(defined __GNUC__ && !defined __clang__ && __OPTIMIZE__) | 379 | # if !(defined __GNUC__ && !defined __clang__ && __OPTIMIZE__) |
| 390 | # define _GL_CXXALIASWARN_2(func,namespace) \ | 380 | # define _GL_CXXALIASWARN_2(func,namespace) \ |
| @@ -412,7 +402,7 @@ | |||
| 412 | GNULIB_NAMESPACE) | 402 | GNULIB_NAMESPACE) |
| 413 | # define _GL_CXXALIASWARN1_1(func,rettype,parameters_and_attributes,namespace) \ | 403 | # define _GL_CXXALIASWARN1_1(func,rettype,parameters_and_attributes,namespace) \ |
| 414 | _GL_CXXALIASWARN1_2 (func, rettype, parameters_and_attributes, namespace) | 404 | _GL_CXXALIASWARN1_2 (func, rettype, parameters_and_attributes, namespace) |
| 415 | /* To work around GCC bug <https://gcc.gnu.org/PR43881>, | 405 | /* To work around GCC bug <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=43881>, |
| 416 | we enable the warning only when not optimizing. */ | 406 | we enable the warning only when not optimizing. */ |
| 417 | # if !(defined __GNUC__ && !defined __clang__ && __OPTIMIZE__) | 407 | # if !(defined __GNUC__ && !defined __clang__ && __OPTIMIZE__) |
| 418 | # define _GL_CXXALIASWARN1_2(func,rettype,parameters_and_attributes,namespace) \ | 408 | # define _GL_CXXALIASWARN1_2(func,rettype,parameters_and_attributes,namespace) \ |
| @@ -621,6 +611,7 @@ _GL_CXXALIAS_SYS (sched_yield, int, (void)); | |||
| 621 | _GL_CXXALIASWARN (sched_yield); | 611 | _GL_CXXALIASWARN (sched_yield); |
| 622 | # endif | 612 | # endif |
| 623 | #elif defined GNULIB_POSIXCHECK | 613 | #elif defined GNULIB_POSIXCHECK |
| 614 | # undef sched_yield | ||
| 624 | # if HAVE_RAW_DECL_SCHED_YIELD | 615 | # if HAVE_RAW_DECL_SCHED_YIELD |
| 625 | _GL_WARN_ON_USE (sched_yield, "sched_yield is not portable - " | 616 | _GL_WARN_ON_USE (sched_yield, "sched_yield is not portable - " |
| 626 | "use gnulib module sched_yield for portability"); | 617 | "use gnulib module sched_yield for portability"); |
diff --git a/gl/stdlib.in.h b/gl/stdlib.in.h index 1342db48..95378503 100644 --- a/gl/stdlib.in.h +++ b/gl/stdlib.in.h | |||
| @@ -237,7 +237,7 @@ _GL_INLINE_HEADER_BEGIN | |||
| 237 | 237 | ||
| 238 | /* Declarations for ISO C N3322. */ | 238 | /* Declarations for ISO C N3322. */ |
| 239 | #if defined __GNUC__ && __GNUC__ >= 15 && !defined __clang__ | 239 | #if defined __GNUC__ && __GNUC__ >= 15 && !defined __clang__ |
| 240 | _GL_EXTERN_C void *bsearch (const void *__key, | 240 | _GL_EXTERN_C void *(bsearch) (const void *__key, |
| 241 | const void *__base, size_t __nmemb, size_t __size, | 241 | const void *__base, size_t __nmemb, size_t __size, |
| 242 | int (*__compare) (const void *, const void *)) | 242 | int (*__compare) (const void *, const void *)) |
| 243 | _GL_ATTRIBUTE_NONNULL_IF_NONZERO (2, 3) _GL_ARG_NONNULL ((5)); | 243 | _GL_ATTRIBUTE_NONNULL_IF_NONZERO (2, 3) _GL_ARG_NONNULL ((5)); |
| @@ -204,16 +204,6 @@ | |||
| 204 | #define _GL_FUNCDECL_RPL_1(rpl_func,rettype,parameters,...) \ | 204 | #define _GL_FUNCDECL_RPL_1(rpl_func,rettype,parameters,...) \ |
| 205 | _GL_EXTERN_C_FUNC __VA_ARGS__ rettype rpl_func parameters | 205 | _GL_EXTERN_C_FUNC __VA_ARGS__ rettype rpl_func parameters |
| 206 | 206 | ||
| 207 | /* _GL_FUNCDECL_SYS_NAME (func) expands to plain func if C++, and to | ||
| 208 | parenthesized func otherwise. Parenthesization is needed in C23 if | ||
| 209 | the function is like strchr and so is a qualifier-generic macro | ||
| 210 | that expands to something more complicated. */ | ||
| 211 | #ifdef __cplusplus | ||
| 212 | # define _GL_FUNCDECL_SYS_NAME(func) func | ||
| 213 | #else | ||
| 214 | # define _GL_FUNCDECL_SYS_NAME(func) (func) | ||
| 215 | #endif | ||
| 216 | |||
| 217 | /* _GL_FUNCDECL_SYS (func, rettype, parameters, [attributes]); | 207 | /* _GL_FUNCDECL_SYS (func, rettype, parameters, [attributes]); |
| 218 | declares the system function, named func, with the given prototype, | 208 | declares the system function, named func, with the given prototype, |
| 219 | consisting of return type, parameters, and attributes. | 209 | consisting of return type, parameters, and attributes. |
| @@ -226,7 +216,7 @@ | |||
| 226 | _GL_FUNCDECL_SYS (posix_openpt, int, (int flags), _GL_ATTRIBUTE_NODISCARD); | 216 | _GL_FUNCDECL_SYS (posix_openpt, int, (int flags), _GL_ATTRIBUTE_NODISCARD); |
| 227 | */ | 217 | */ |
| 228 | #define _GL_FUNCDECL_SYS(func,rettype,parameters,...) \ | 218 | #define _GL_FUNCDECL_SYS(func,rettype,parameters,...) \ |
| 229 | _GL_EXTERN_C_FUNC __VA_ARGS__ rettype _GL_FUNCDECL_SYS_NAME (func) parameters | 219 | _GL_EXTERN_C_FUNC __VA_ARGS__ rettype func parameters |
| 230 | 220 | ||
| 231 | /* _GL_CXXALIAS_RPL (func, rettype, parameters); | 221 | /* _GL_CXXALIAS_RPL (func, rettype, parameters); |
| 232 | declares a C++ alias called GNULIB_NAMESPACE::func | 222 | declares a C++ alias called GNULIB_NAMESPACE::func |
| @@ -397,7 +387,7 @@ | |||
| 397 | _GL_CXXALIASWARN_1 (func, GNULIB_NAMESPACE) | 387 | _GL_CXXALIASWARN_1 (func, GNULIB_NAMESPACE) |
| 398 | # define _GL_CXXALIASWARN_1(func,namespace) \ | 388 | # define _GL_CXXALIASWARN_1(func,namespace) \ |
| 399 | _GL_CXXALIASWARN_2 (func, namespace) | 389 | _GL_CXXALIASWARN_2 (func, namespace) |
| 400 | /* To work around GCC bug <https://gcc.gnu.org/PR43881>, | 390 | /* To work around GCC bug <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=43881>, |
| 401 | we enable the warning only when not optimizing. */ | 391 | we enable the warning only when not optimizing. */ |
| 402 | # if !(defined __GNUC__ && !defined __clang__ && __OPTIMIZE__) | 392 | # if !(defined __GNUC__ && !defined __clang__ && __OPTIMIZE__) |
| 403 | # define _GL_CXXALIASWARN_2(func,namespace) \ | 393 | # define _GL_CXXALIASWARN_2(func,namespace) \ |
| @@ -425,7 +415,7 @@ | |||
| 425 | GNULIB_NAMESPACE) | 415 | GNULIB_NAMESPACE) |
| 426 | # define _GL_CXXALIASWARN1_1(func,rettype,parameters_and_attributes,namespace) \ | 416 | # define _GL_CXXALIASWARN1_1(func,rettype,parameters_and_attributes,namespace) \ |
| 427 | _GL_CXXALIASWARN1_2 (func, rettype, parameters_and_attributes, namespace) | 417 | _GL_CXXALIASWARN1_2 (func, rettype, parameters_and_attributes, namespace) |
| 428 | /* To work around GCC bug <https://gcc.gnu.org/PR43881>, | 418 | /* To work around GCC bug <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=43881>, |
| 429 | we enable the warning only when not optimizing. */ | 419 | we enable the warning only when not optimizing. */ |
| 430 | # if !(defined __GNUC__ && !defined __clang__ && __OPTIMIZE__) | 420 | # if !(defined __GNUC__ && !defined __clang__ && __OPTIMIZE__) |
| 431 | # define _GL_CXXALIASWARN1_2(func,rettype,parameters_and_attributes,namespace) \ | 421 | # define _GL_CXXALIASWARN1_2(func,rettype,parameters_and_attributes,namespace) \ |
| @@ -1037,6 +1027,7 @@ _GL_CXXALIAS_SYS (c32rtomb, size_t, (char *s, char32_t wc, mbstate_t *ps)); | |||
| 1037 | _GL_CXXALIASWARN (c32rtomb); | 1027 | _GL_CXXALIASWARN (c32rtomb); |
| 1038 | # endif | 1028 | # endif |
| 1039 | #elif defined GNULIB_POSIXCHECK | 1029 | #elif defined GNULIB_POSIXCHECK |
| 1030 | # undef c32rtomb | ||
| 1040 | # if HAVE_RAW_DECL_C32RTOMB | 1031 | # if HAVE_RAW_DECL_C32RTOMB |
| 1041 | _GL_WARN_ON_USE (c32rtomb, "c32rtomb is not portable - " | 1032 | _GL_WARN_ON_USE (c32rtomb, "c32rtomb is not portable - " |
| 1042 | "use gnulib module c32rtomb for portability"); | 1033 | "use gnulib module c32rtomb for portability"); |
| @@ -1193,6 +1184,7 @@ _GL_CXXALIAS_SYS (mbrtoc32, size_t, | |||
| 1193 | _GL_CXXALIASWARN (mbrtoc32); | 1184 | _GL_CXXALIASWARN (mbrtoc32); |
| 1194 | # endif | 1185 | # endif |
| 1195 | #elif defined GNULIB_POSIXCHECK | 1186 | #elif defined GNULIB_POSIXCHECK |
| 1187 | # undef mbrtoc32 | ||
| 1196 | # if HAVE_RAW_DECL_MBRTOC32 | 1188 | # if HAVE_RAW_DECL_MBRTOC32 |
| 1197 | _GL_WARN_ON_USE (mbrtoc32, "mbrtoc32 is not portable - " | 1189 | _GL_WARN_ON_USE (mbrtoc32, "mbrtoc32 is not portable - " |
| 1198 | "use gnulib module mbrtoc32 for portability"); | 1190 | "use gnulib module mbrtoc32 for portability"); |
| @@ -1224,6 +1216,7 @@ _GL_CXXALIAS_SYS (mbrtoc16, size_t, | |||
| 1224 | _GL_CXXALIASWARN (mbrtoc16); | 1216 | _GL_CXXALIASWARN (mbrtoc16); |
| 1225 | # endif | 1217 | # endif |
| 1226 | #elif defined GNULIB_POSIXCHECK | 1218 | #elif defined GNULIB_POSIXCHECK |
| 1219 | # undef mbrtoc16 | ||
| 1227 | # if HAVE_RAW_DECL_MBRTOC16 | 1220 | # if HAVE_RAW_DECL_MBRTOC16 |
| 1228 | _GL_WARN_ON_USE (mbrtoc16, "mbrtoc16 is not portable - " | 1221 | _GL_WARN_ON_USE (mbrtoc16, "mbrtoc16 is not portable - " |
| 1229 | "use gnulib module mbrtoc16 for portability"); | 1222 | "use gnulib module mbrtoc16 for portability"); |
diff --git a/gl/unicase/.deps/libgnu_a-tolower.Po b/gl/unicase/.deps/libgnu_a-tolower.Po index 1ba6bacb..53c0e96d 100644 --- a/gl/unicase/.deps/libgnu_a-tolower.Po +++ b/gl/unicase/.deps/libgnu_a-tolower.Po | |||
| @@ -1,49 +1,43 @@ | |||
| 1 | unicase/libgnu_a-tolower.o: unicase/tolower.c /usr/include/stdc-predef.h \ | 1 | unicase/libgnu_a-tolower.o: unicase/tolower.c /usr/include/stdc-predef.h \ |
| 2 | ../config.h unicase.h unitypes.h \ | 2 | ../config.h unicase.h unitypes.h \ |
| 3 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stdint.h /usr/include/stdint.h \ | 3 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdint.h \ |
| 4 | /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ | 4 | /usr/include/stdint.h /usr/include/bits/libc-header-start.h \ |
| 5 | /usr/include/features.h /usr/include/features-time64.h \ | 5 | /usr/include/features.h /usr/include/features-time64.h \ |
| 6 | /usr/include/x86_64-linux-gnu/bits/wordsize.h \ | 6 | /usr/include/bits/wordsize.h /usr/include/bits/timesize.h \ |
| 7 | /usr/include/x86_64-linux-gnu/bits/timesize.h \ | 7 | /usr/include/sys/cdefs.h /usr/include/bits/long-double.h \ |
| 8 | /usr/include/x86_64-linux-gnu/sys/cdefs.h \ | 8 | /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ |
| 9 | /usr/include/x86_64-linux-gnu/bits/long-double.h \ | 9 | /usr/include/bits/types.h /usr/include/bits/typesizes.h \ |
| 10 | /usr/include/x86_64-linux-gnu/gnu/stubs.h \ | 10 | /usr/include/bits/time64.h /usr/include/bits/wchar.h \ |
| 11 | /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ | 11 | /usr/include/bits/stdint-intn.h /usr/include/bits/stdint-uintn.h \ |
| 12 | /usr/include/x86_64-linux-gnu/bits/types.h \ | 12 | /usr/include/bits/stdint-least.h \ |
| 13 | /usr/include/x86_64-linux-gnu/bits/typesizes.h \ | 13 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdbool.h stddef.h \ |
| 14 | /usr/include/x86_64-linux-gnu/bits/time64.h \ | 14 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stddef.h uninorm.h \ |
| 15 | /usr/include/x86_64-linux-gnu/bits/wchar.h \ | ||
| 16 | /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \ | ||
| 17 | /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ | ||
| 18 | /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ | ||
| 19 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stdbool.h stddef.h \ | ||
| 20 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stddef.h uninorm.h \ | ||
| 21 | unicase/tolower.h unicase/simple-mapping.h | 15 | unicase/tolower.h unicase/simple-mapping.h |
| 22 | /usr/include/stdc-predef.h: | 16 | /usr/include/stdc-predef.h: |
| 23 | ../config.h: | 17 | ../config.h: |
| 24 | unicase.h: | 18 | unicase.h: |
| 25 | unitypes.h: | 19 | unitypes.h: |
| 26 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stdint.h: | 20 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdint.h: |
| 27 | /usr/include/stdint.h: | 21 | /usr/include/stdint.h: |
| 28 | /usr/include/x86_64-linux-gnu/bits/libc-header-start.h: | 22 | /usr/include/bits/libc-header-start.h: |
| 29 | /usr/include/features.h: | 23 | /usr/include/features.h: |
| 30 | /usr/include/features-time64.h: | 24 | /usr/include/features-time64.h: |
| 31 | /usr/include/x86_64-linux-gnu/bits/wordsize.h: | 25 | /usr/include/bits/wordsize.h: |
| 32 | /usr/include/x86_64-linux-gnu/bits/timesize.h: | 26 | /usr/include/bits/timesize.h: |
| 33 | /usr/include/x86_64-linux-gnu/sys/cdefs.h: | 27 | /usr/include/sys/cdefs.h: |
| 34 | /usr/include/x86_64-linux-gnu/bits/long-double.h: | 28 | /usr/include/bits/long-double.h: |
| 35 | /usr/include/x86_64-linux-gnu/gnu/stubs.h: | 29 | /usr/include/gnu/stubs.h: |
| 36 | /usr/include/x86_64-linux-gnu/gnu/stubs-64.h: | 30 | /usr/include/gnu/stubs-64.h: |
| 37 | /usr/include/x86_64-linux-gnu/bits/types.h: | 31 | /usr/include/bits/types.h: |
| 38 | /usr/include/x86_64-linux-gnu/bits/typesizes.h: | 32 | /usr/include/bits/typesizes.h: |
| 39 | /usr/include/x86_64-linux-gnu/bits/time64.h: | 33 | /usr/include/bits/time64.h: |
| 40 | /usr/include/x86_64-linux-gnu/bits/wchar.h: | 34 | /usr/include/bits/wchar.h: |
| 41 | /usr/include/x86_64-linux-gnu/bits/stdint-intn.h: | 35 | /usr/include/bits/stdint-intn.h: |
| 42 | /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h: | 36 | /usr/include/bits/stdint-uintn.h: |
| 43 | /usr/include/x86_64-linux-gnu/bits/stdint-least.h: | 37 | /usr/include/bits/stdint-least.h: |
| 44 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stdbool.h: | 38 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdbool.h: |
| 45 | stddef.h: | 39 | stddef.h: |
| 46 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stddef.h: | 40 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stddef.h: |
| 47 | uninorm.h: | 41 | uninorm.h: |
| 48 | unicase/tolower.h: | 42 | unicase/tolower.h: |
| 49 | unicase/simple-mapping.h: | 43 | unicase/simple-mapping.h: |
diff --git a/gl/unictype/.deps/libgnu_a-ctype_alnum.Po b/gl/unictype/.deps/libgnu_a-ctype_alnum.Po index 429d1968..9af7af75 100644 --- a/gl/unictype/.deps/libgnu_a-ctype_alnum.Po +++ b/gl/unictype/.deps/libgnu_a-ctype_alnum.Po | |||
| @@ -1,48 +1,42 @@ | |||
| 1 | unictype/libgnu_a-ctype_alnum.o: unictype/ctype_alnum.c \ | 1 | unictype/libgnu_a-ctype_alnum.o: unictype/ctype_alnum.c \ |
| 2 | /usr/include/stdc-predef.h ../config.h unictype.h unitypes.h \ | 2 | /usr/include/stdc-predef.h ../config.h unictype.h unitypes.h \ |
| 3 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stdint.h /usr/include/stdint.h \ | 3 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdint.h \ |
| 4 | /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ | 4 | /usr/include/stdint.h /usr/include/bits/libc-header-start.h \ |
| 5 | /usr/include/features.h /usr/include/features-time64.h \ | 5 | /usr/include/features.h /usr/include/features-time64.h \ |
| 6 | /usr/include/x86_64-linux-gnu/bits/wordsize.h \ | 6 | /usr/include/bits/wordsize.h /usr/include/bits/timesize.h \ |
| 7 | /usr/include/x86_64-linux-gnu/bits/timesize.h \ | 7 | /usr/include/sys/cdefs.h /usr/include/bits/long-double.h \ |
| 8 | /usr/include/x86_64-linux-gnu/sys/cdefs.h \ | 8 | /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ |
| 9 | /usr/include/x86_64-linux-gnu/bits/long-double.h \ | 9 | /usr/include/bits/types.h /usr/include/bits/typesizes.h \ |
| 10 | /usr/include/x86_64-linux-gnu/gnu/stubs.h \ | 10 | /usr/include/bits/time64.h /usr/include/bits/wchar.h \ |
| 11 | /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ | 11 | /usr/include/bits/stdint-intn.h /usr/include/bits/stdint-uintn.h \ |
| 12 | /usr/include/x86_64-linux-gnu/bits/types.h \ | 12 | /usr/include/bits/stdint-least.h \ |
| 13 | /usr/include/x86_64-linux-gnu/bits/typesizes.h \ | 13 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdbool.h stddef.h \ |
| 14 | /usr/include/x86_64-linux-gnu/bits/time64.h \ | 14 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stddef.h \ |
| 15 | /usr/include/x86_64-linux-gnu/bits/wchar.h \ | 15 | unictype/bitmap.h unictype/ctype_alnum.h |
| 16 | /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \ | ||
| 17 | /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ | ||
| 18 | /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ | ||
| 19 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stdbool.h stddef.h \ | ||
| 20 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stddef.h unictype/bitmap.h \ | ||
| 21 | unictype/ctype_alnum.h | ||
| 22 | /usr/include/stdc-predef.h: | 16 | /usr/include/stdc-predef.h: |
| 23 | ../config.h: | 17 | ../config.h: |
| 24 | unictype.h: | 18 | unictype.h: |
| 25 | unitypes.h: | 19 | unitypes.h: |
| 26 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stdint.h: | 20 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdint.h: |
| 27 | /usr/include/stdint.h: | 21 | /usr/include/stdint.h: |
| 28 | /usr/include/x86_64-linux-gnu/bits/libc-header-start.h: | 22 | /usr/include/bits/libc-header-start.h: |
| 29 | /usr/include/features.h: | 23 | /usr/include/features.h: |
| 30 | /usr/include/features-time64.h: | 24 | /usr/include/features-time64.h: |
| 31 | /usr/include/x86_64-linux-gnu/bits/wordsize.h: | 25 | /usr/include/bits/wordsize.h: |
| 32 | /usr/include/x86_64-linux-gnu/bits/timesize.h: | 26 | /usr/include/bits/timesize.h: |
| 33 | /usr/include/x86_64-linux-gnu/sys/cdefs.h: | 27 | /usr/include/sys/cdefs.h: |
| 34 | /usr/include/x86_64-linux-gnu/bits/long-double.h: | 28 | /usr/include/bits/long-double.h: |
| 35 | /usr/include/x86_64-linux-gnu/gnu/stubs.h: | 29 | /usr/include/gnu/stubs.h: |
| 36 | /usr/include/x86_64-linux-gnu/gnu/stubs-64.h: | 30 | /usr/include/gnu/stubs-64.h: |
| 37 | /usr/include/x86_64-linux-gnu/bits/types.h: | 31 | /usr/include/bits/types.h: |
| 38 | /usr/include/x86_64-linux-gnu/bits/typesizes.h: | 32 | /usr/include/bits/typesizes.h: |
| 39 | /usr/include/x86_64-linux-gnu/bits/time64.h: | 33 | /usr/include/bits/time64.h: |
| 40 | /usr/include/x86_64-linux-gnu/bits/wchar.h: | 34 | /usr/include/bits/wchar.h: |
| 41 | /usr/include/x86_64-linux-gnu/bits/stdint-intn.h: | 35 | /usr/include/bits/stdint-intn.h: |
| 42 | /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h: | 36 | /usr/include/bits/stdint-uintn.h: |
| 43 | /usr/include/x86_64-linux-gnu/bits/stdint-least.h: | 37 | /usr/include/bits/stdint-least.h: |
| 44 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stdbool.h: | 38 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdbool.h: |
| 45 | stddef.h: | 39 | stddef.h: |
| 46 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stddef.h: | 40 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stddef.h: |
| 47 | unictype/bitmap.h: | 41 | unictype/bitmap.h: |
| 48 | unictype/ctype_alnum.h: | 42 | unictype/ctype_alnum.h: |
diff --git a/gl/unictype/.deps/libgnu_a-ctype_alpha.Po b/gl/unictype/.deps/libgnu_a-ctype_alpha.Po index f2d01713..fe1d271e 100644 --- a/gl/unictype/.deps/libgnu_a-ctype_alpha.Po +++ b/gl/unictype/.deps/libgnu_a-ctype_alpha.Po | |||
| @@ -1,48 +1,42 @@ | |||
| 1 | unictype/libgnu_a-ctype_alpha.o: unictype/ctype_alpha.c \ | 1 | unictype/libgnu_a-ctype_alpha.o: unictype/ctype_alpha.c \ |
| 2 | /usr/include/stdc-predef.h ../config.h unictype.h unitypes.h \ | 2 | /usr/include/stdc-predef.h ../config.h unictype.h unitypes.h \ |
| 3 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stdint.h /usr/include/stdint.h \ | 3 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdint.h \ |
| 4 | /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ | 4 | /usr/include/stdint.h /usr/include/bits/libc-header-start.h \ |
| 5 | /usr/include/features.h /usr/include/features-time64.h \ | 5 | /usr/include/features.h /usr/include/features-time64.h \ |
| 6 | /usr/include/x86_64-linux-gnu/bits/wordsize.h \ | 6 | /usr/include/bits/wordsize.h /usr/include/bits/timesize.h \ |
| 7 | /usr/include/x86_64-linux-gnu/bits/timesize.h \ | 7 | /usr/include/sys/cdefs.h /usr/include/bits/long-double.h \ |
| 8 | /usr/include/x86_64-linux-gnu/sys/cdefs.h \ | 8 | /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ |
| 9 | /usr/include/x86_64-linux-gnu/bits/long-double.h \ | 9 | /usr/include/bits/types.h /usr/include/bits/typesizes.h \ |
| 10 | /usr/include/x86_64-linux-gnu/gnu/stubs.h \ | 10 | /usr/include/bits/time64.h /usr/include/bits/wchar.h \ |
| 11 | /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ | 11 | /usr/include/bits/stdint-intn.h /usr/include/bits/stdint-uintn.h \ |
| 12 | /usr/include/x86_64-linux-gnu/bits/types.h \ | 12 | /usr/include/bits/stdint-least.h \ |
| 13 | /usr/include/x86_64-linux-gnu/bits/typesizes.h \ | 13 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdbool.h stddef.h \ |
| 14 | /usr/include/x86_64-linux-gnu/bits/time64.h \ | 14 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stddef.h \ |
| 15 | /usr/include/x86_64-linux-gnu/bits/wchar.h \ | 15 | unictype/bitmap.h unictype/ctype_alpha.h |
| 16 | /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \ | ||
| 17 | /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ | ||
| 18 | /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ | ||
| 19 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stdbool.h stddef.h \ | ||
| 20 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stddef.h unictype/bitmap.h \ | ||
| 21 | unictype/ctype_alpha.h | ||
| 22 | /usr/include/stdc-predef.h: | 16 | /usr/include/stdc-predef.h: |
| 23 | ../config.h: | 17 | ../config.h: |
| 24 | unictype.h: | 18 | unictype.h: |
| 25 | unitypes.h: | 19 | unitypes.h: |
| 26 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stdint.h: | 20 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdint.h: |
| 27 | /usr/include/stdint.h: | 21 | /usr/include/stdint.h: |
| 28 | /usr/include/x86_64-linux-gnu/bits/libc-header-start.h: | 22 | /usr/include/bits/libc-header-start.h: |
| 29 | /usr/include/features.h: | 23 | /usr/include/features.h: |
| 30 | /usr/include/features-time64.h: | 24 | /usr/include/features-time64.h: |
| 31 | /usr/include/x86_64-linux-gnu/bits/wordsize.h: | 25 | /usr/include/bits/wordsize.h: |
| 32 | /usr/include/x86_64-linux-gnu/bits/timesize.h: | 26 | /usr/include/bits/timesize.h: |
| 33 | /usr/include/x86_64-linux-gnu/sys/cdefs.h: | 27 | /usr/include/sys/cdefs.h: |
| 34 | /usr/include/x86_64-linux-gnu/bits/long-double.h: | 28 | /usr/include/bits/long-double.h: |
| 35 | /usr/include/x86_64-linux-gnu/gnu/stubs.h: | 29 | /usr/include/gnu/stubs.h: |
| 36 | /usr/include/x86_64-linux-gnu/gnu/stubs-64.h: | 30 | /usr/include/gnu/stubs-64.h: |
| 37 | /usr/include/x86_64-linux-gnu/bits/types.h: | 31 | /usr/include/bits/types.h: |
| 38 | /usr/include/x86_64-linux-gnu/bits/typesizes.h: | 32 | /usr/include/bits/typesizes.h: |
| 39 | /usr/include/x86_64-linux-gnu/bits/time64.h: | 33 | /usr/include/bits/time64.h: |
| 40 | /usr/include/x86_64-linux-gnu/bits/wchar.h: | 34 | /usr/include/bits/wchar.h: |
| 41 | /usr/include/x86_64-linux-gnu/bits/stdint-intn.h: | 35 | /usr/include/bits/stdint-intn.h: |
| 42 | /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h: | 36 | /usr/include/bits/stdint-uintn.h: |
| 43 | /usr/include/x86_64-linux-gnu/bits/stdint-least.h: | 37 | /usr/include/bits/stdint-least.h: |
| 44 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stdbool.h: | 38 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdbool.h: |
| 45 | stddef.h: | 39 | stddef.h: |
| 46 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stddef.h: | 40 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stddef.h: |
| 47 | unictype/bitmap.h: | 41 | unictype/bitmap.h: |
| 48 | unictype/ctype_alpha.h: | 42 | unictype/ctype_alpha.h: |
diff --git a/gl/unictype/.deps/libgnu_a-ctype_blank.Po b/gl/unictype/.deps/libgnu_a-ctype_blank.Po index 82be4126..b7eb8ece 100644 --- a/gl/unictype/.deps/libgnu_a-ctype_blank.Po +++ b/gl/unictype/.deps/libgnu_a-ctype_blank.Po | |||
| @@ -1,48 +1,42 @@ | |||
| 1 | unictype/libgnu_a-ctype_blank.o: unictype/ctype_blank.c \ | 1 | unictype/libgnu_a-ctype_blank.o: unictype/ctype_blank.c \ |
| 2 | /usr/include/stdc-predef.h ../config.h unictype.h unitypes.h \ | 2 | /usr/include/stdc-predef.h ../config.h unictype.h unitypes.h \ |
| 3 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stdint.h /usr/include/stdint.h \ | 3 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdint.h \ |
| 4 | /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ | 4 | /usr/include/stdint.h /usr/include/bits/libc-header-start.h \ |
| 5 | /usr/include/features.h /usr/include/features-time64.h \ | 5 | /usr/include/features.h /usr/include/features-time64.h \ |
| 6 | /usr/include/x86_64-linux-gnu/bits/wordsize.h \ | 6 | /usr/include/bits/wordsize.h /usr/include/bits/timesize.h \ |
| 7 | /usr/include/x86_64-linux-gnu/bits/timesize.h \ | 7 | /usr/include/sys/cdefs.h /usr/include/bits/long-double.h \ |
| 8 | /usr/include/x86_64-linux-gnu/sys/cdefs.h \ | 8 | /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ |
| 9 | /usr/include/x86_64-linux-gnu/bits/long-double.h \ | 9 | /usr/include/bits/types.h /usr/include/bits/typesizes.h \ |
| 10 | /usr/include/x86_64-linux-gnu/gnu/stubs.h \ | 10 | /usr/include/bits/time64.h /usr/include/bits/wchar.h \ |
| 11 | /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ | 11 | /usr/include/bits/stdint-intn.h /usr/include/bits/stdint-uintn.h \ |
| 12 | /usr/include/x86_64-linux-gnu/bits/types.h \ | 12 | /usr/include/bits/stdint-least.h \ |
| 13 | /usr/include/x86_64-linux-gnu/bits/typesizes.h \ | 13 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdbool.h stddef.h \ |
| 14 | /usr/include/x86_64-linux-gnu/bits/time64.h \ | 14 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stddef.h \ |
| 15 | /usr/include/x86_64-linux-gnu/bits/wchar.h \ | 15 | unictype/bitmap.h unictype/ctype_blank.h |
| 16 | /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \ | ||
| 17 | /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ | ||
| 18 | /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ | ||
| 19 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stdbool.h stddef.h \ | ||
| 20 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stddef.h unictype/bitmap.h \ | ||
| 21 | unictype/ctype_blank.h | ||
| 22 | /usr/include/stdc-predef.h: | 16 | /usr/include/stdc-predef.h: |
| 23 | ../config.h: | 17 | ../config.h: |
| 24 | unictype.h: | 18 | unictype.h: |
| 25 | unitypes.h: | 19 | unitypes.h: |
| 26 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stdint.h: | 20 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdint.h: |
| 27 | /usr/include/stdint.h: | 21 | /usr/include/stdint.h: |
| 28 | /usr/include/x86_64-linux-gnu/bits/libc-header-start.h: | 22 | /usr/include/bits/libc-header-start.h: |
| 29 | /usr/include/features.h: | 23 | /usr/include/features.h: |
| 30 | /usr/include/features-time64.h: | 24 | /usr/include/features-time64.h: |
| 31 | /usr/include/x86_64-linux-gnu/bits/wordsize.h: | 25 | /usr/include/bits/wordsize.h: |
| 32 | /usr/include/x86_64-linux-gnu/bits/timesize.h: | 26 | /usr/include/bits/timesize.h: |
| 33 | /usr/include/x86_64-linux-gnu/sys/cdefs.h: | 27 | /usr/include/sys/cdefs.h: |
| 34 | /usr/include/x86_64-linux-gnu/bits/long-double.h: | 28 | /usr/include/bits/long-double.h: |
| 35 | /usr/include/x86_64-linux-gnu/gnu/stubs.h: | 29 | /usr/include/gnu/stubs.h: |
| 36 | /usr/include/x86_64-linux-gnu/gnu/stubs-64.h: | 30 | /usr/include/gnu/stubs-64.h: |
| 37 | /usr/include/x86_64-linux-gnu/bits/types.h: | 31 | /usr/include/bits/types.h: |
| 38 | /usr/include/x86_64-linux-gnu/bits/typesizes.h: | 32 | /usr/include/bits/typesizes.h: |
| 39 | /usr/include/x86_64-linux-gnu/bits/time64.h: | 33 | /usr/include/bits/time64.h: |
| 40 | /usr/include/x86_64-linux-gnu/bits/wchar.h: | 34 | /usr/include/bits/wchar.h: |
| 41 | /usr/include/x86_64-linux-gnu/bits/stdint-intn.h: | 35 | /usr/include/bits/stdint-intn.h: |
| 42 | /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h: | 36 | /usr/include/bits/stdint-uintn.h: |
| 43 | /usr/include/x86_64-linux-gnu/bits/stdint-least.h: | 37 | /usr/include/bits/stdint-least.h: |
| 44 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stdbool.h: | 38 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdbool.h: |
| 45 | stddef.h: | 39 | stddef.h: |
| 46 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stddef.h: | 40 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stddef.h: |
| 47 | unictype/bitmap.h: | 41 | unictype/bitmap.h: |
| 48 | unictype/ctype_blank.h: | 42 | unictype/ctype_blank.h: |
diff --git a/gl/unictype/.deps/libgnu_a-ctype_cntrl.Po b/gl/unictype/.deps/libgnu_a-ctype_cntrl.Po index dfb2233d..4416e841 100644 --- a/gl/unictype/.deps/libgnu_a-ctype_cntrl.Po +++ b/gl/unictype/.deps/libgnu_a-ctype_cntrl.Po | |||
| @@ -1,48 +1,42 @@ | |||
| 1 | unictype/libgnu_a-ctype_cntrl.o: unictype/ctype_cntrl.c \ | 1 | unictype/libgnu_a-ctype_cntrl.o: unictype/ctype_cntrl.c \ |
| 2 | /usr/include/stdc-predef.h ../config.h unictype.h unitypes.h \ | 2 | /usr/include/stdc-predef.h ../config.h unictype.h unitypes.h \ |
| 3 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stdint.h /usr/include/stdint.h \ | 3 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdint.h \ |
| 4 | /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ | 4 | /usr/include/stdint.h /usr/include/bits/libc-header-start.h \ |
| 5 | /usr/include/features.h /usr/include/features-time64.h \ | 5 | /usr/include/features.h /usr/include/features-time64.h \ |
| 6 | /usr/include/x86_64-linux-gnu/bits/wordsize.h \ | 6 | /usr/include/bits/wordsize.h /usr/include/bits/timesize.h \ |
| 7 | /usr/include/x86_64-linux-gnu/bits/timesize.h \ | 7 | /usr/include/sys/cdefs.h /usr/include/bits/long-double.h \ |
| 8 | /usr/include/x86_64-linux-gnu/sys/cdefs.h \ | 8 | /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ |
| 9 | /usr/include/x86_64-linux-gnu/bits/long-double.h \ | 9 | /usr/include/bits/types.h /usr/include/bits/typesizes.h \ |
| 10 | /usr/include/x86_64-linux-gnu/gnu/stubs.h \ | 10 | /usr/include/bits/time64.h /usr/include/bits/wchar.h \ |
| 11 | /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ | 11 | /usr/include/bits/stdint-intn.h /usr/include/bits/stdint-uintn.h \ |
| 12 | /usr/include/x86_64-linux-gnu/bits/types.h \ | 12 | /usr/include/bits/stdint-least.h \ |
| 13 | /usr/include/x86_64-linux-gnu/bits/typesizes.h \ | 13 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdbool.h stddef.h \ |
| 14 | /usr/include/x86_64-linux-gnu/bits/time64.h \ | 14 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stddef.h \ |
| 15 | /usr/include/x86_64-linux-gnu/bits/wchar.h \ | 15 | unictype/bitmap.h unictype/ctype_cntrl.h |
| 16 | /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \ | ||
| 17 | /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ | ||
| 18 | /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ | ||
| 19 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stdbool.h stddef.h \ | ||
| 20 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stddef.h unictype/bitmap.h \ | ||
| 21 | unictype/ctype_cntrl.h | ||
| 22 | /usr/include/stdc-predef.h: | 16 | /usr/include/stdc-predef.h: |
| 23 | ../config.h: | 17 | ../config.h: |
| 24 | unictype.h: | 18 | unictype.h: |
| 25 | unitypes.h: | 19 | unitypes.h: |
| 26 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stdint.h: | 20 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdint.h: |
| 27 | /usr/include/stdint.h: | 21 | /usr/include/stdint.h: |
| 28 | /usr/include/x86_64-linux-gnu/bits/libc-header-start.h: | 22 | /usr/include/bits/libc-header-start.h: |
| 29 | /usr/include/features.h: | 23 | /usr/include/features.h: |
| 30 | /usr/include/features-time64.h: | 24 | /usr/include/features-time64.h: |
| 31 | /usr/include/x86_64-linux-gnu/bits/wordsize.h: | 25 | /usr/include/bits/wordsize.h: |
| 32 | /usr/include/x86_64-linux-gnu/bits/timesize.h: | 26 | /usr/include/bits/timesize.h: |
| 33 | /usr/include/x86_64-linux-gnu/sys/cdefs.h: | 27 | /usr/include/sys/cdefs.h: |
| 34 | /usr/include/x86_64-linux-gnu/bits/long-double.h: | 28 | /usr/include/bits/long-double.h: |
| 35 | /usr/include/x86_64-linux-gnu/gnu/stubs.h: | 29 | /usr/include/gnu/stubs.h: |
| 36 | /usr/include/x86_64-linux-gnu/gnu/stubs-64.h: | 30 | /usr/include/gnu/stubs-64.h: |
| 37 | /usr/include/x86_64-linux-gnu/bits/types.h: | 31 | /usr/include/bits/types.h: |
| 38 | /usr/include/x86_64-linux-gnu/bits/typesizes.h: | 32 | /usr/include/bits/typesizes.h: |
| 39 | /usr/include/x86_64-linux-gnu/bits/time64.h: | 33 | /usr/include/bits/time64.h: |
| 40 | /usr/include/x86_64-linux-gnu/bits/wchar.h: | 34 | /usr/include/bits/wchar.h: |
| 41 | /usr/include/x86_64-linux-gnu/bits/stdint-intn.h: | 35 | /usr/include/bits/stdint-intn.h: |
| 42 | /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h: | 36 | /usr/include/bits/stdint-uintn.h: |
| 43 | /usr/include/x86_64-linux-gnu/bits/stdint-least.h: | 37 | /usr/include/bits/stdint-least.h: |
| 44 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stdbool.h: | 38 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdbool.h: |
| 45 | stddef.h: | 39 | stddef.h: |
| 46 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stddef.h: | 40 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stddef.h: |
| 47 | unictype/bitmap.h: | 41 | unictype/bitmap.h: |
| 48 | unictype/ctype_cntrl.h: | 42 | unictype/ctype_cntrl.h: |
diff --git a/gl/unictype/.deps/libgnu_a-ctype_digit.Po b/gl/unictype/.deps/libgnu_a-ctype_digit.Po index d243fcc1..dd88d5aa 100644 --- a/gl/unictype/.deps/libgnu_a-ctype_digit.Po +++ b/gl/unictype/.deps/libgnu_a-ctype_digit.Po | |||
| @@ -1,48 +1,42 @@ | |||
| 1 | unictype/libgnu_a-ctype_digit.o: unictype/ctype_digit.c \ | 1 | unictype/libgnu_a-ctype_digit.o: unictype/ctype_digit.c \ |
| 2 | /usr/include/stdc-predef.h ../config.h unictype.h unitypes.h \ | 2 | /usr/include/stdc-predef.h ../config.h unictype.h unitypes.h \ |
| 3 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stdint.h /usr/include/stdint.h \ | 3 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdint.h \ |
| 4 | /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ | 4 | /usr/include/stdint.h /usr/include/bits/libc-header-start.h \ |
| 5 | /usr/include/features.h /usr/include/features-time64.h \ | 5 | /usr/include/features.h /usr/include/features-time64.h \ |
| 6 | /usr/include/x86_64-linux-gnu/bits/wordsize.h \ | 6 | /usr/include/bits/wordsize.h /usr/include/bits/timesize.h \ |
| 7 | /usr/include/x86_64-linux-gnu/bits/timesize.h \ | 7 | /usr/include/sys/cdefs.h /usr/include/bits/long-double.h \ |
| 8 | /usr/include/x86_64-linux-gnu/sys/cdefs.h \ | 8 | /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ |
| 9 | /usr/include/x86_64-linux-gnu/bits/long-double.h \ | 9 | /usr/include/bits/types.h /usr/include/bits/typesizes.h \ |
| 10 | /usr/include/x86_64-linux-gnu/gnu/stubs.h \ | 10 | /usr/include/bits/time64.h /usr/include/bits/wchar.h \ |
| 11 | /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ | 11 | /usr/include/bits/stdint-intn.h /usr/include/bits/stdint-uintn.h \ |
| 12 | /usr/include/x86_64-linux-gnu/bits/types.h \ | 12 | /usr/include/bits/stdint-least.h \ |
| 13 | /usr/include/x86_64-linux-gnu/bits/typesizes.h \ | 13 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdbool.h stddef.h \ |
| 14 | /usr/include/x86_64-linux-gnu/bits/time64.h \ | 14 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stddef.h \ |
| 15 | /usr/include/x86_64-linux-gnu/bits/wchar.h \ | 15 | unictype/bitmap.h unictype/ctype_digit.h |
| 16 | /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \ | ||
| 17 | /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ | ||
| 18 | /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ | ||
| 19 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stdbool.h stddef.h \ | ||
| 20 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stddef.h unictype/bitmap.h \ | ||
| 21 | unictype/ctype_digit.h | ||
| 22 | /usr/include/stdc-predef.h: | 16 | /usr/include/stdc-predef.h: |
| 23 | ../config.h: | 17 | ../config.h: |
| 24 | unictype.h: | 18 | unictype.h: |
| 25 | unitypes.h: | 19 | unitypes.h: |
| 26 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stdint.h: | 20 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdint.h: |
| 27 | /usr/include/stdint.h: | 21 | /usr/include/stdint.h: |
| 28 | /usr/include/x86_64-linux-gnu/bits/libc-header-start.h: | 22 | /usr/include/bits/libc-header-start.h: |
| 29 | /usr/include/features.h: | 23 | /usr/include/features.h: |
| 30 | /usr/include/features-time64.h: | 24 | /usr/include/features-time64.h: |
| 31 | /usr/include/x86_64-linux-gnu/bits/wordsize.h: | 25 | /usr/include/bits/wordsize.h: |
| 32 | /usr/include/x86_64-linux-gnu/bits/timesize.h: | 26 | /usr/include/bits/timesize.h: |
| 33 | /usr/include/x86_64-linux-gnu/sys/cdefs.h: | 27 | /usr/include/sys/cdefs.h: |
| 34 | /usr/include/x86_64-linux-gnu/bits/long-double.h: | 28 | /usr/include/bits/long-double.h: |
| 35 | /usr/include/x86_64-linux-gnu/gnu/stubs.h: | 29 | /usr/include/gnu/stubs.h: |
| 36 | /usr/include/x86_64-linux-gnu/gnu/stubs-64.h: | 30 | /usr/include/gnu/stubs-64.h: |
| 37 | /usr/include/x86_64-linux-gnu/bits/types.h: | 31 | /usr/include/bits/types.h: |
| 38 | /usr/include/x86_64-linux-gnu/bits/typesizes.h: | 32 | /usr/include/bits/typesizes.h: |
| 39 | /usr/include/x86_64-linux-gnu/bits/time64.h: | 33 | /usr/include/bits/time64.h: |
| 40 | /usr/include/x86_64-linux-gnu/bits/wchar.h: | 34 | /usr/include/bits/wchar.h: |
| 41 | /usr/include/x86_64-linux-gnu/bits/stdint-intn.h: | 35 | /usr/include/bits/stdint-intn.h: |
| 42 | /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h: | 36 | /usr/include/bits/stdint-uintn.h: |
| 43 | /usr/include/x86_64-linux-gnu/bits/stdint-least.h: | 37 | /usr/include/bits/stdint-least.h: |
| 44 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stdbool.h: | 38 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdbool.h: |
| 45 | stddef.h: | 39 | stddef.h: |
| 46 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stddef.h: | 40 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stddef.h: |
| 47 | unictype/bitmap.h: | 41 | unictype/bitmap.h: |
| 48 | unictype/ctype_digit.h: | 42 | unictype/ctype_digit.h: |
diff --git a/gl/unictype/.deps/libgnu_a-ctype_graph.Po b/gl/unictype/.deps/libgnu_a-ctype_graph.Po index 9850fe6f..5e4edfcf 100644 --- a/gl/unictype/.deps/libgnu_a-ctype_graph.Po +++ b/gl/unictype/.deps/libgnu_a-ctype_graph.Po | |||
| @@ -1,48 +1,42 @@ | |||
| 1 | unictype/libgnu_a-ctype_graph.o: unictype/ctype_graph.c \ | 1 | unictype/libgnu_a-ctype_graph.o: unictype/ctype_graph.c \ |
| 2 | /usr/include/stdc-predef.h ../config.h unictype.h unitypes.h \ | 2 | /usr/include/stdc-predef.h ../config.h unictype.h unitypes.h \ |
| 3 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stdint.h /usr/include/stdint.h \ | 3 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdint.h \ |
| 4 | /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ | 4 | /usr/include/stdint.h /usr/include/bits/libc-header-start.h \ |
| 5 | /usr/include/features.h /usr/include/features-time64.h \ | 5 | /usr/include/features.h /usr/include/features-time64.h \ |
| 6 | /usr/include/x86_64-linux-gnu/bits/wordsize.h \ | 6 | /usr/include/bits/wordsize.h /usr/include/bits/timesize.h \ |
| 7 | /usr/include/x86_64-linux-gnu/bits/timesize.h \ | 7 | /usr/include/sys/cdefs.h /usr/include/bits/long-double.h \ |
| 8 | /usr/include/x86_64-linux-gnu/sys/cdefs.h \ | 8 | /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ |
| 9 | /usr/include/x86_64-linux-gnu/bits/long-double.h \ | 9 | /usr/include/bits/types.h /usr/include/bits/typesizes.h \ |
| 10 | /usr/include/x86_64-linux-gnu/gnu/stubs.h \ | 10 | /usr/include/bits/time64.h /usr/include/bits/wchar.h \ |
| 11 | /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ | 11 | /usr/include/bits/stdint-intn.h /usr/include/bits/stdint-uintn.h \ |
| 12 | /usr/include/x86_64-linux-gnu/bits/types.h \ | 12 | /usr/include/bits/stdint-least.h \ |
| 13 | /usr/include/x86_64-linux-gnu/bits/typesizes.h \ | 13 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdbool.h stddef.h \ |
| 14 | /usr/include/x86_64-linux-gnu/bits/time64.h \ | 14 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stddef.h \ |
| 15 | /usr/include/x86_64-linux-gnu/bits/wchar.h \ | 15 | unictype/bitmap.h unictype/ctype_graph.h |
| 16 | /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \ | ||
| 17 | /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ | ||
| 18 | /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ | ||
| 19 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stdbool.h stddef.h \ | ||
| 20 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stddef.h unictype/bitmap.h \ | ||
| 21 | unictype/ctype_graph.h | ||
| 22 | /usr/include/stdc-predef.h: | 16 | /usr/include/stdc-predef.h: |
| 23 | ../config.h: | 17 | ../config.h: |
| 24 | unictype.h: | 18 | unictype.h: |
| 25 | unitypes.h: | 19 | unitypes.h: |
| 26 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stdint.h: | 20 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdint.h: |
| 27 | /usr/include/stdint.h: | 21 | /usr/include/stdint.h: |
| 28 | /usr/include/x86_64-linux-gnu/bits/libc-header-start.h: | 22 | /usr/include/bits/libc-header-start.h: |
| 29 | /usr/include/features.h: | 23 | /usr/include/features.h: |
| 30 | /usr/include/features-time64.h: | 24 | /usr/include/features-time64.h: |
| 31 | /usr/include/x86_64-linux-gnu/bits/wordsize.h: | 25 | /usr/include/bits/wordsize.h: |
| 32 | /usr/include/x86_64-linux-gnu/bits/timesize.h: | 26 | /usr/include/bits/timesize.h: |
| 33 | /usr/include/x86_64-linux-gnu/sys/cdefs.h: | 27 | /usr/include/sys/cdefs.h: |
| 34 | /usr/include/x86_64-linux-gnu/bits/long-double.h: | 28 | /usr/include/bits/long-double.h: |
| 35 | /usr/include/x86_64-linux-gnu/gnu/stubs.h: | 29 | /usr/include/gnu/stubs.h: |
| 36 | /usr/include/x86_64-linux-gnu/gnu/stubs-64.h: | 30 | /usr/include/gnu/stubs-64.h: |
| 37 | /usr/include/x86_64-linux-gnu/bits/types.h: | 31 | /usr/include/bits/types.h: |
| 38 | /usr/include/x86_64-linux-gnu/bits/typesizes.h: | 32 | /usr/include/bits/typesizes.h: |
| 39 | /usr/include/x86_64-linux-gnu/bits/time64.h: | 33 | /usr/include/bits/time64.h: |
| 40 | /usr/include/x86_64-linux-gnu/bits/wchar.h: | 34 | /usr/include/bits/wchar.h: |
| 41 | /usr/include/x86_64-linux-gnu/bits/stdint-intn.h: | 35 | /usr/include/bits/stdint-intn.h: |
| 42 | /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h: | 36 | /usr/include/bits/stdint-uintn.h: |
| 43 | /usr/include/x86_64-linux-gnu/bits/stdint-least.h: | 37 | /usr/include/bits/stdint-least.h: |
| 44 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stdbool.h: | 38 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdbool.h: |
| 45 | stddef.h: | 39 | stddef.h: |
| 46 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stddef.h: | 40 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stddef.h: |
| 47 | unictype/bitmap.h: | 41 | unictype/bitmap.h: |
| 48 | unictype/ctype_graph.h: | 42 | unictype/ctype_graph.h: |
diff --git a/gl/unictype/.deps/libgnu_a-ctype_lower.Po b/gl/unictype/.deps/libgnu_a-ctype_lower.Po index 6447d3e4..823d6082 100644 --- a/gl/unictype/.deps/libgnu_a-ctype_lower.Po +++ b/gl/unictype/.deps/libgnu_a-ctype_lower.Po | |||
| @@ -1,48 +1,42 @@ | |||
| 1 | unictype/libgnu_a-ctype_lower.o: unictype/ctype_lower.c \ | 1 | unictype/libgnu_a-ctype_lower.o: unictype/ctype_lower.c \ |
| 2 | /usr/include/stdc-predef.h ../config.h unictype.h unitypes.h \ | 2 | /usr/include/stdc-predef.h ../config.h unictype.h unitypes.h \ |
| 3 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stdint.h /usr/include/stdint.h \ | 3 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdint.h \ |
| 4 | /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ | 4 | /usr/include/stdint.h /usr/include/bits/libc-header-start.h \ |
| 5 | /usr/include/features.h /usr/include/features-time64.h \ | 5 | /usr/include/features.h /usr/include/features-time64.h \ |
| 6 | /usr/include/x86_64-linux-gnu/bits/wordsize.h \ | 6 | /usr/include/bits/wordsize.h /usr/include/bits/timesize.h \ |
| 7 | /usr/include/x86_64-linux-gnu/bits/timesize.h \ | 7 | /usr/include/sys/cdefs.h /usr/include/bits/long-double.h \ |
| 8 | /usr/include/x86_64-linux-gnu/sys/cdefs.h \ | 8 | /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ |
| 9 | /usr/include/x86_64-linux-gnu/bits/long-double.h \ | 9 | /usr/include/bits/types.h /usr/include/bits/typesizes.h \ |
| 10 | /usr/include/x86_64-linux-gnu/gnu/stubs.h \ | 10 | /usr/include/bits/time64.h /usr/include/bits/wchar.h \ |
| 11 | /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ | 11 | /usr/include/bits/stdint-intn.h /usr/include/bits/stdint-uintn.h \ |
| 12 | /usr/include/x86_64-linux-gnu/bits/types.h \ | 12 | /usr/include/bits/stdint-least.h \ |
| 13 | /usr/include/x86_64-linux-gnu/bits/typesizes.h \ | 13 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdbool.h stddef.h \ |
| 14 | /usr/include/x86_64-linux-gnu/bits/time64.h \ | 14 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stddef.h \ |
| 15 | /usr/include/x86_64-linux-gnu/bits/wchar.h \ | 15 | unictype/bitmap.h unictype/ctype_lower.h |
| 16 | /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \ | ||
| 17 | /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ | ||
| 18 | /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ | ||
| 19 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stdbool.h stddef.h \ | ||
| 20 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stddef.h unictype/bitmap.h \ | ||
| 21 | unictype/ctype_lower.h | ||
| 22 | /usr/include/stdc-predef.h: | 16 | /usr/include/stdc-predef.h: |
| 23 | ../config.h: | 17 | ../config.h: |
| 24 | unictype.h: | 18 | unictype.h: |
| 25 | unitypes.h: | 19 | unitypes.h: |
| 26 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stdint.h: | 20 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdint.h: |
| 27 | /usr/include/stdint.h: | 21 | /usr/include/stdint.h: |
| 28 | /usr/include/x86_64-linux-gnu/bits/libc-header-start.h: | 22 | /usr/include/bits/libc-header-start.h: |
| 29 | /usr/include/features.h: | 23 | /usr/include/features.h: |
| 30 | /usr/include/features-time64.h: | 24 | /usr/include/features-time64.h: |
| 31 | /usr/include/x86_64-linux-gnu/bits/wordsize.h: | 25 | /usr/include/bits/wordsize.h: |
| 32 | /usr/include/x86_64-linux-gnu/bits/timesize.h: | 26 | /usr/include/bits/timesize.h: |
| 33 | /usr/include/x86_64-linux-gnu/sys/cdefs.h: | 27 | /usr/include/sys/cdefs.h: |
| 34 | /usr/include/x86_64-linux-gnu/bits/long-double.h: | 28 | /usr/include/bits/long-double.h: |
| 35 | /usr/include/x86_64-linux-gnu/gnu/stubs.h: | 29 | /usr/include/gnu/stubs.h: |
| 36 | /usr/include/x86_64-linux-gnu/gnu/stubs-64.h: | 30 | /usr/include/gnu/stubs-64.h: |
| 37 | /usr/include/x86_64-linux-gnu/bits/types.h: | 31 | /usr/include/bits/types.h: |
| 38 | /usr/include/x86_64-linux-gnu/bits/typesizes.h: | 32 | /usr/include/bits/typesizes.h: |
| 39 | /usr/include/x86_64-linux-gnu/bits/time64.h: | 33 | /usr/include/bits/time64.h: |
| 40 | /usr/include/x86_64-linux-gnu/bits/wchar.h: | 34 | /usr/include/bits/wchar.h: |
| 41 | /usr/include/x86_64-linux-gnu/bits/stdint-intn.h: | 35 | /usr/include/bits/stdint-intn.h: |
| 42 | /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h: | 36 | /usr/include/bits/stdint-uintn.h: |
| 43 | /usr/include/x86_64-linux-gnu/bits/stdint-least.h: | 37 | /usr/include/bits/stdint-least.h: |
| 44 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stdbool.h: | 38 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdbool.h: |
| 45 | stddef.h: | 39 | stddef.h: |
| 46 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stddef.h: | 40 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stddef.h: |
| 47 | unictype/bitmap.h: | 41 | unictype/bitmap.h: |
| 48 | unictype/ctype_lower.h: | 42 | unictype/ctype_lower.h: |
diff --git a/gl/unictype/.deps/libgnu_a-ctype_print.Po b/gl/unictype/.deps/libgnu_a-ctype_print.Po index f592e16c..3759170a 100644 --- a/gl/unictype/.deps/libgnu_a-ctype_print.Po +++ b/gl/unictype/.deps/libgnu_a-ctype_print.Po | |||
| @@ -1,48 +1,42 @@ | |||
| 1 | unictype/libgnu_a-ctype_print.o: unictype/ctype_print.c \ | 1 | unictype/libgnu_a-ctype_print.o: unictype/ctype_print.c \ |
| 2 | /usr/include/stdc-predef.h ../config.h unictype.h unitypes.h \ | 2 | /usr/include/stdc-predef.h ../config.h unictype.h unitypes.h \ |
| 3 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stdint.h /usr/include/stdint.h \ | 3 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdint.h \ |
| 4 | /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ | 4 | /usr/include/stdint.h /usr/include/bits/libc-header-start.h \ |
| 5 | /usr/include/features.h /usr/include/features-time64.h \ | 5 | /usr/include/features.h /usr/include/features-time64.h \ |
| 6 | /usr/include/x86_64-linux-gnu/bits/wordsize.h \ | 6 | /usr/include/bits/wordsize.h /usr/include/bits/timesize.h \ |
| 7 | /usr/include/x86_64-linux-gnu/bits/timesize.h \ | 7 | /usr/include/sys/cdefs.h /usr/include/bits/long-double.h \ |
| 8 | /usr/include/x86_64-linux-gnu/sys/cdefs.h \ | 8 | /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ |
| 9 | /usr/include/x86_64-linux-gnu/bits/long-double.h \ | 9 | /usr/include/bits/types.h /usr/include/bits/typesizes.h \ |
| 10 | /usr/include/x86_64-linux-gnu/gnu/stubs.h \ | 10 | /usr/include/bits/time64.h /usr/include/bits/wchar.h \ |
| 11 | /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ | 11 | /usr/include/bits/stdint-intn.h /usr/include/bits/stdint-uintn.h \ |
| 12 | /usr/include/x86_64-linux-gnu/bits/types.h \ | 12 | /usr/include/bits/stdint-least.h \ |
| 13 | /usr/include/x86_64-linux-gnu/bits/typesizes.h \ | 13 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdbool.h stddef.h \ |
| 14 | /usr/include/x86_64-linux-gnu/bits/time64.h \ | 14 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stddef.h \ |
| 15 | /usr/include/x86_64-linux-gnu/bits/wchar.h \ | 15 | unictype/bitmap.h unictype/ctype_print.h |
| 16 | /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \ | ||
| 17 | /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ | ||
| 18 | /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ | ||
| 19 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stdbool.h stddef.h \ | ||
| 20 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stddef.h unictype/bitmap.h \ | ||
| 21 | unictype/ctype_print.h | ||
| 22 | /usr/include/stdc-predef.h: | 16 | /usr/include/stdc-predef.h: |
| 23 | ../config.h: | 17 | ../config.h: |
| 24 | unictype.h: | 18 | unictype.h: |
| 25 | unitypes.h: | 19 | unitypes.h: |
| 26 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stdint.h: | 20 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdint.h: |
| 27 | /usr/include/stdint.h: | 21 | /usr/include/stdint.h: |
| 28 | /usr/include/x86_64-linux-gnu/bits/libc-header-start.h: | 22 | /usr/include/bits/libc-header-start.h: |
| 29 | /usr/include/features.h: | 23 | /usr/include/features.h: |
| 30 | /usr/include/features-time64.h: | 24 | /usr/include/features-time64.h: |
| 31 | /usr/include/x86_64-linux-gnu/bits/wordsize.h: | 25 | /usr/include/bits/wordsize.h: |
| 32 | /usr/include/x86_64-linux-gnu/bits/timesize.h: | 26 | /usr/include/bits/timesize.h: |
| 33 | /usr/include/x86_64-linux-gnu/sys/cdefs.h: | 27 | /usr/include/sys/cdefs.h: |
| 34 | /usr/include/x86_64-linux-gnu/bits/long-double.h: | 28 | /usr/include/bits/long-double.h: |
| 35 | /usr/include/x86_64-linux-gnu/gnu/stubs.h: | 29 | /usr/include/gnu/stubs.h: |
| 36 | /usr/include/x86_64-linux-gnu/gnu/stubs-64.h: | 30 | /usr/include/gnu/stubs-64.h: |
| 37 | /usr/include/x86_64-linux-gnu/bits/types.h: | 31 | /usr/include/bits/types.h: |
| 38 | /usr/include/x86_64-linux-gnu/bits/typesizes.h: | 32 | /usr/include/bits/typesizes.h: |
| 39 | /usr/include/x86_64-linux-gnu/bits/time64.h: | 33 | /usr/include/bits/time64.h: |
| 40 | /usr/include/x86_64-linux-gnu/bits/wchar.h: | 34 | /usr/include/bits/wchar.h: |
| 41 | /usr/include/x86_64-linux-gnu/bits/stdint-intn.h: | 35 | /usr/include/bits/stdint-intn.h: |
| 42 | /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h: | 36 | /usr/include/bits/stdint-uintn.h: |
| 43 | /usr/include/x86_64-linux-gnu/bits/stdint-least.h: | 37 | /usr/include/bits/stdint-least.h: |
| 44 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stdbool.h: | 38 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdbool.h: |
| 45 | stddef.h: | 39 | stddef.h: |
| 46 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stddef.h: | 40 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stddef.h: |
| 47 | unictype/bitmap.h: | 41 | unictype/bitmap.h: |
| 48 | unictype/ctype_print.h: | 42 | unictype/ctype_print.h: |
diff --git a/gl/unictype/.deps/libgnu_a-ctype_punct.Po b/gl/unictype/.deps/libgnu_a-ctype_punct.Po index 245e5396..a797e4dd 100644 --- a/gl/unictype/.deps/libgnu_a-ctype_punct.Po +++ b/gl/unictype/.deps/libgnu_a-ctype_punct.Po | |||
| @@ -1,48 +1,42 @@ | |||
| 1 | unictype/libgnu_a-ctype_punct.o: unictype/ctype_punct.c \ | 1 | unictype/libgnu_a-ctype_punct.o: unictype/ctype_punct.c \ |
| 2 | /usr/include/stdc-predef.h ../config.h unictype.h unitypes.h \ | 2 | /usr/include/stdc-predef.h ../config.h unictype.h unitypes.h \ |
| 3 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stdint.h /usr/include/stdint.h \ | 3 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdint.h \ |
| 4 | /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ | 4 | /usr/include/stdint.h /usr/include/bits/libc-header-start.h \ |
| 5 | /usr/include/features.h /usr/include/features-time64.h \ | 5 | /usr/include/features.h /usr/include/features-time64.h \ |
| 6 | /usr/include/x86_64-linux-gnu/bits/wordsize.h \ | 6 | /usr/include/bits/wordsize.h /usr/include/bits/timesize.h \ |
| 7 | /usr/include/x86_64-linux-gnu/bits/timesize.h \ | 7 | /usr/include/sys/cdefs.h /usr/include/bits/long-double.h \ |
| 8 | /usr/include/x86_64-linux-gnu/sys/cdefs.h \ | 8 | /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ |
| 9 | /usr/include/x86_64-linux-gnu/bits/long-double.h \ | 9 | /usr/include/bits/types.h /usr/include/bits/typesizes.h \ |
| 10 | /usr/include/x86_64-linux-gnu/gnu/stubs.h \ | 10 | /usr/include/bits/time64.h /usr/include/bits/wchar.h \ |
| 11 | /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ | 11 | /usr/include/bits/stdint-intn.h /usr/include/bits/stdint-uintn.h \ |
| 12 | /usr/include/x86_64-linux-gnu/bits/types.h \ | 12 | /usr/include/bits/stdint-least.h \ |
| 13 | /usr/include/x86_64-linux-gnu/bits/typesizes.h \ | 13 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdbool.h stddef.h \ |
| 14 | /usr/include/x86_64-linux-gnu/bits/time64.h \ | 14 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stddef.h \ |
| 15 | /usr/include/x86_64-linux-gnu/bits/wchar.h \ | 15 | unictype/bitmap.h unictype/ctype_punct.h |
| 16 | /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \ | ||
| 17 | /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ | ||
| 18 | /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ | ||
| 19 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stdbool.h stddef.h \ | ||
| 20 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stddef.h unictype/bitmap.h \ | ||
| 21 | unictype/ctype_punct.h | ||
| 22 | /usr/include/stdc-predef.h: | 16 | /usr/include/stdc-predef.h: |
| 23 | ../config.h: | 17 | ../config.h: |
| 24 | unictype.h: | 18 | unictype.h: |
| 25 | unitypes.h: | 19 | unitypes.h: |
| 26 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stdint.h: | 20 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdint.h: |
| 27 | /usr/include/stdint.h: | 21 | /usr/include/stdint.h: |
| 28 | /usr/include/x86_64-linux-gnu/bits/libc-header-start.h: | 22 | /usr/include/bits/libc-header-start.h: |
| 29 | /usr/include/features.h: | 23 | /usr/include/features.h: |
| 30 | /usr/include/features-time64.h: | 24 | /usr/include/features-time64.h: |
| 31 | /usr/include/x86_64-linux-gnu/bits/wordsize.h: | 25 | /usr/include/bits/wordsize.h: |
| 32 | /usr/include/x86_64-linux-gnu/bits/timesize.h: | 26 | /usr/include/bits/timesize.h: |
| 33 | /usr/include/x86_64-linux-gnu/sys/cdefs.h: | 27 | /usr/include/sys/cdefs.h: |
| 34 | /usr/include/x86_64-linux-gnu/bits/long-double.h: | 28 | /usr/include/bits/long-double.h: |
| 35 | /usr/include/x86_64-linux-gnu/gnu/stubs.h: | 29 | /usr/include/gnu/stubs.h: |
| 36 | /usr/include/x86_64-linux-gnu/gnu/stubs-64.h: | 30 | /usr/include/gnu/stubs-64.h: |
| 37 | /usr/include/x86_64-linux-gnu/bits/types.h: | 31 | /usr/include/bits/types.h: |
| 38 | /usr/include/x86_64-linux-gnu/bits/typesizes.h: | 32 | /usr/include/bits/typesizes.h: |
| 39 | /usr/include/x86_64-linux-gnu/bits/time64.h: | 33 | /usr/include/bits/time64.h: |
| 40 | /usr/include/x86_64-linux-gnu/bits/wchar.h: | 34 | /usr/include/bits/wchar.h: |
| 41 | /usr/include/x86_64-linux-gnu/bits/stdint-intn.h: | 35 | /usr/include/bits/stdint-intn.h: |
| 42 | /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h: | 36 | /usr/include/bits/stdint-uintn.h: |
| 43 | /usr/include/x86_64-linux-gnu/bits/stdint-least.h: | 37 | /usr/include/bits/stdint-least.h: |
| 44 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stdbool.h: | 38 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdbool.h: |
| 45 | stddef.h: | 39 | stddef.h: |
| 46 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stddef.h: | 40 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stddef.h: |
| 47 | unictype/bitmap.h: | 41 | unictype/bitmap.h: |
| 48 | unictype/ctype_punct.h: | 42 | unictype/ctype_punct.h: |
diff --git a/gl/unictype/.deps/libgnu_a-ctype_space.Po b/gl/unictype/.deps/libgnu_a-ctype_space.Po index 2b51c518..aea98736 100644 --- a/gl/unictype/.deps/libgnu_a-ctype_space.Po +++ b/gl/unictype/.deps/libgnu_a-ctype_space.Po | |||
| @@ -1,48 +1,42 @@ | |||
| 1 | unictype/libgnu_a-ctype_space.o: unictype/ctype_space.c \ | 1 | unictype/libgnu_a-ctype_space.o: unictype/ctype_space.c \ |
| 2 | /usr/include/stdc-predef.h ../config.h unictype.h unitypes.h \ | 2 | /usr/include/stdc-predef.h ../config.h unictype.h unitypes.h \ |
| 3 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stdint.h /usr/include/stdint.h \ | 3 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdint.h \ |
| 4 | /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ | 4 | /usr/include/stdint.h /usr/include/bits/libc-header-start.h \ |
| 5 | /usr/include/features.h /usr/include/features-time64.h \ | 5 | /usr/include/features.h /usr/include/features-time64.h \ |
| 6 | /usr/include/x86_64-linux-gnu/bits/wordsize.h \ | 6 | /usr/include/bits/wordsize.h /usr/include/bits/timesize.h \ |
| 7 | /usr/include/x86_64-linux-gnu/bits/timesize.h \ | 7 | /usr/include/sys/cdefs.h /usr/include/bits/long-double.h \ |
| 8 | /usr/include/x86_64-linux-gnu/sys/cdefs.h \ | 8 | /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ |
| 9 | /usr/include/x86_64-linux-gnu/bits/long-double.h \ | 9 | /usr/include/bits/types.h /usr/include/bits/typesizes.h \ |
| 10 | /usr/include/x86_64-linux-gnu/gnu/stubs.h \ | 10 | /usr/include/bits/time64.h /usr/include/bits/wchar.h \ |
| 11 | /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ | 11 | /usr/include/bits/stdint-intn.h /usr/include/bits/stdint-uintn.h \ |
| 12 | /usr/include/x86_64-linux-gnu/bits/types.h \ | 12 | /usr/include/bits/stdint-least.h \ |
| 13 | /usr/include/x86_64-linux-gnu/bits/typesizes.h \ | 13 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdbool.h stddef.h \ |
| 14 | /usr/include/x86_64-linux-gnu/bits/time64.h \ | 14 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stddef.h \ |
| 15 | /usr/include/x86_64-linux-gnu/bits/wchar.h \ | 15 | unictype/bitmap.h unictype/ctype_space.h |
| 16 | /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \ | ||
| 17 | /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ | ||
| 18 | /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ | ||
| 19 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stdbool.h stddef.h \ | ||
| 20 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stddef.h unictype/bitmap.h \ | ||
| 21 | unictype/ctype_space.h | ||
| 22 | /usr/include/stdc-predef.h: | 16 | /usr/include/stdc-predef.h: |
| 23 | ../config.h: | 17 | ../config.h: |
| 24 | unictype.h: | 18 | unictype.h: |
| 25 | unitypes.h: | 19 | unitypes.h: |
| 26 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stdint.h: | 20 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdint.h: |
| 27 | /usr/include/stdint.h: | 21 | /usr/include/stdint.h: |
| 28 | /usr/include/x86_64-linux-gnu/bits/libc-header-start.h: | 22 | /usr/include/bits/libc-header-start.h: |
| 29 | /usr/include/features.h: | 23 | /usr/include/features.h: |
| 30 | /usr/include/features-time64.h: | 24 | /usr/include/features-time64.h: |
| 31 | /usr/include/x86_64-linux-gnu/bits/wordsize.h: | 25 | /usr/include/bits/wordsize.h: |
| 32 | /usr/include/x86_64-linux-gnu/bits/timesize.h: | 26 | /usr/include/bits/timesize.h: |
| 33 | /usr/include/x86_64-linux-gnu/sys/cdefs.h: | 27 | /usr/include/sys/cdefs.h: |
| 34 | /usr/include/x86_64-linux-gnu/bits/long-double.h: | 28 | /usr/include/bits/long-double.h: |
| 35 | /usr/include/x86_64-linux-gnu/gnu/stubs.h: | 29 | /usr/include/gnu/stubs.h: |
| 36 | /usr/include/x86_64-linux-gnu/gnu/stubs-64.h: | 30 | /usr/include/gnu/stubs-64.h: |
| 37 | /usr/include/x86_64-linux-gnu/bits/types.h: | 31 | /usr/include/bits/types.h: |
| 38 | /usr/include/x86_64-linux-gnu/bits/typesizes.h: | 32 | /usr/include/bits/typesizes.h: |
| 39 | /usr/include/x86_64-linux-gnu/bits/time64.h: | 33 | /usr/include/bits/time64.h: |
| 40 | /usr/include/x86_64-linux-gnu/bits/wchar.h: | 34 | /usr/include/bits/wchar.h: |
| 41 | /usr/include/x86_64-linux-gnu/bits/stdint-intn.h: | 35 | /usr/include/bits/stdint-intn.h: |
| 42 | /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h: | 36 | /usr/include/bits/stdint-uintn.h: |
| 43 | /usr/include/x86_64-linux-gnu/bits/stdint-least.h: | 37 | /usr/include/bits/stdint-least.h: |
| 44 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stdbool.h: | 38 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdbool.h: |
| 45 | stddef.h: | 39 | stddef.h: |
| 46 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stddef.h: | 40 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stddef.h: |
| 47 | unictype/bitmap.h: | 41 | unictype/bitmap.h: |
| 48 | unictype/ctype_space.h: | 42 | unictype/ctype_space.h: |
diff --git a/gl/unictype/.deps/libgnu_a-ctype_upper.Po b/gl/unictype/.deps/libgnu_a-ctype_upper.Po index 3395834f..197e89c1 100644 --- a/gl/unictype/.deps/libgnu_a-ctype_upper.Po +++ b/gl/unictype/.deps/libgnu_a-ctype_upper.Po | |||
| @@ -1,48 +1,42 @@ | |||
| 1 | unictype/libgnu_a-ctype_upper.o: unictype/ctype_upper.c \ | 1 | unictype/libgnu_a-ctype_upper.o: unictype/ctype_upper.c \ |
| 2 | /usr/include/stdc-predef.h ../config.h unictype.h unitypes.h \ | 2 | /usr/include/stdc-predef.h ../config.h unictype.h unitypes.h \ |
| 3 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stdint.h /usr/include/stdint.h \ | 3 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdint.h \ |
| 4 | /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ | 4 | /usr/include/stdint.h /usr/include/bits/libc-header-start.h \ |
| 5 | /usr/include/features.h /usr/include/features-time64.h \ | 5 | /usr/include/features.h /usr/include/features-time64.h \ |
| 6 | /usr/include/x86_64-linux-gnu/bits/wordsize.h \ | 6 | /usr/include/bits/wordsize.h /usr/include/bits/timesize.h \ |
| 7 | /usr/include/x86_64-linux-gnu/bits/timesize.h \ | 7 | /usr/include/sys/cdefs.h /usr/include/bits/long-double.h \ |
| 8 | /usr/include/x86_64-linux-gnu/sys/cdefs.h \ | 8 | /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ |
| 9 | /usr/include/x86_64-linux-gnu/bits/long-double.h \ | 9 | /usr/include/bits/types.h /usr/include/bits/typesizes.h \ |
| 10 | /usr/include/x86_64-linux-gnu/gnu/stubs.h \ | 10 | /usr/include/bits/time64.h /usr/include/bits/wchar.h \ |
| 11 | /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ | 11 | /usr/include/bits/stdint-intn.h /usr/include/bits/stdint-uintn.h \ |
| 12 | /usr/include/x86_64-linux-gnu/bits/types.h \ | 12 | /usr/include/bits/stdint-least.h \ |
| 13 | /usr/include/x86_64-linux-gnu/bits/typesizes.h \ | 13 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdbool.h stddef.h \ |
| 14 | /usr/include/x86_64-linux-gnu/bits/time64.h \ | 14 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stddef.h \ |
| 15 | /usr/include/x86_64-linux-gnu/bits/wchar.h \ | 15 | unictype/bitmap.h unictype/ctype_upper.h |
| 16 | /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \ | ||
| 17 | /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ | ||
| 18 | /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ | ||
| 19 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stdbool.h stddef.h \ | ||
| 20 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stddef.h unictype/bitmap.h \ | ||
| 21 | unictype/ctype_upper.h | ||
| 22 | /usr/include/stdc-predef.h: | 16 | /usr/include/stdc-predef.h: |
| 23 | ../config.h: | 17 | ../config.h: |
| 24 | unictype.h: | 18 | unictype.h: |
| 25 | unitypes.h: | 19 | unitypes.h: |
| 26 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stdint.h: | 20 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdint.h: |
| 27 | /usr/include/stdint.h: | 21 | /usr/include/stdint.h: |
| 28 | /usr/include/x86_64-linux-gnu/bits/libc-header-start.h: | 22 | /usr/include/bits/libc-header-start.h: |
| 29 | /usr/include/features.h: | 23 | /usr/include/features.h: |
| 30 | /usr/include/features-time64.h: | 24 | /usr/include/features-time64.h: |
| 31 | /usr/include/x86_64-linux-gnu/bits/wordsize.h: | 25 | /usr/include/bits/wordsize.h: |
| 32 | /usr/include/x86_64-linux-gnu/bits/timesize.h: | 26 | /usr/include/bits/timesize.h: |
| 33 | /usr/include/x86_64-linux-gnu/sys/cdefs.h: | 27 | /usr/include/sys/cdefs.h: |
| 34 | /usr/include/x86_64-linux-gnu/bits/long-double.h: | 28 | /usr/include/bits/long-double.h: |
| 35 | /usr/include/x86_64-linux-gnu/gnu/stubs.h: | 29 | /usr/include/gnu/stubs.h: |
| 36 | /usr/include/x86_64-linux-gnu/gnu/stubs-64.h: | 30 | /usr/include/gnu/stubs-64.h: |
| 37 | /usr/include/x86_64-linux-gnu/bits/types.h: | 31 | /usr/include/bits/types.h: |
| 38 | /usr/include/x86_64-linux-gnu/bits/typesizes.h: | 32 | /usr/include/bits/typesizes.h: |
| 39 | /usr/include/x86_64-linux-gnu/bits/time64.h: | 33 | /usr/include/bits/time64.h: |
| 40 | /usr/include/x86_64-linux-gnu/bits/wchar.h: | 34 | /usr/include/bits/wchar.h: |
| 41 | /usr/include/x86_64-linux-gnu/bits/stdint-intn.h: | 35 | /usr/include/bits/stdint-intn.h: |
| 42 | /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h: | 36 | /usr/include/bits/stdint-uintn.h: |
| 43 | /usr/include/x86_64-linux-gnu/bits/stdint-least.h: | 37 | /usr/include/bits/stdint-least.h: |
| 44 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stdbool.h: | 38 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdbool.h: |
| 45 | stddef.h: | 39 | stddef.h: |
| 46 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stddef.h: | 40 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stddef.h: |
| 47 | unictype/bitmap.h: | 41 | unictype/bitmap.h: |
| 48 | unictype/ctype_upper.h: | 42 | unictype/ctype_upper.h: |
diff --git a/gl/unictype/.deps/libgnu_a-ctype_xdigit.Po b/gl/unictype/.deps/libgnu_a-ctype_xdigit.Po index 3c05b331..86a47831 100644 --- a/gl/unictype/.deps/libgnu_a-ctype_xdigit.Po +++ b/gl/unictype/.deps/libgnu_a-ctype_xdigit.Po | |||
| @@ -1,48 +1,42 @@ | |||
| 1 | unictype/libgnu_a-ctype_xdigit.o: unictype/ctype_xdigit.c \ | 1 | unictype/libgnu_a-ctype_xdigit.o: unictype/ctype_xdigit.c \ |
| 2 | /usr/include/stdc-predef.h ../config.h unictype.h unitypes.h \ | 2 | /usr/include/stdc-predef.h ../config.h unictype.h unitypes.h \ |
| 3 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stdint.h /usr/include/stdint.h \ | 3 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdint.h \ |
| 4 | /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ | 4 | /usr/include/stdint.h /usr/include/bits/libc-header-start.h \ |
| 5 | /usr/include/features.h /usr/include/features-time64.h \ | 5 | /usr/include/features.h /usr/include/features-time64.h \ |
| 6 | /usr/include/x86_64-linux-gnu/bits/wordsize.h \ | 6 | /usr/include/bits/wordsize.h /usr/include/bits/timesize.h \ |
| 7 | /usr/include/x86_64-linux-gnu/bits/timesize.h \ | 7 | /usr/include/sys/cdefs.h /usr/include/bits/long-double.h \ |
| 8 | /usr/include/x86_64-linux-gnu/sys/cdefs.h \ | 8 | /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ |
| 9 | /usr/include/x86_64-linux-gnu/bits/long-double.h \ | 9 | /usr/include/bits/types.h /usr/include/bits/typesizes.h \ |
| 10 | /usr/include/x86_64-linux-gnu/gnu/stubs.h \ | 10 | /usr/include/bits/time64.h /usr/include/bits/wchar.h \ |
| 11 | /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ | 11 | /usr/include/bits/stdint-intn.h /usr/include/bits/stdint-uintn.h \ |
| 12 | /usr/include/x86_64-linux-gnu/bits/types.h \ | 12 | /usr/include/bits/stdint-least.h \ |
| 13 | /usr/include/x86_64-linux-gnu/bits/typesizes.h \ | 13 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdbool.h stddef.h \ |
| 14 | /usr/include/x86_64-linux-gnu/bits/time64.h \ | 14 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stddef.h \ |
| 15 | /usr/include/x86_64-linux-gnu/bits/wchar.h \ | 15 | unictype/bitmap.h unictype/ctype_xdigit.h |
| 16 | /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \ | ||
| 17 | /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ | ||
| 18 | /usr/include/x86_64-linux-gnu/bits/stdint-least.h \ | ||
| 19 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stdbool.h stddef.h \ | ||
| 20 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stddef.h unictype/bitmap.h \ | ||
| 21 | unictype/ctype_xdigit.h | ||
| 22 | /usr/include/stdc-predef.h: | 16 | /usr/include/stdc-predef.h: |
| 23 | ../config.h: | 17 | ../config.h: |
| 24 | unictype.h: | 18 | unictype.h: |
| 25 | unitypes.h: | 19 | unitypes.h: |
| 26 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stdint.h: | 20 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdint.h: |
| 27 | /usr/include/stdint.h: | 21 | /usr/include/stdint.h: |
| 28 | /usr/include/x86_64-linux-gnu/bits/libc-header-start.h: | 22 | /usr/include/bits/libc-header-start.h: |
| 29 | /usr/include/features.h: | 23 | /usr/include/features.h: |
| 30 | /usr/include/features-time64.h: | 24 | /usr/include/features-time64.h: |
| 31 | /usr/include/x86_64-linux-gnu/bits/wordsize.h: | 25 | /usr/include/bits/wordsize.h: |
| 32 | /usr/include/x86_64-linux-gnu/bits/timesize.h: | 26 | /usr/include/bits/timesize.h: |
| 33 | /usr/include/x86_64-linux-gnu/sys/cdefs.h: | 27 | /usr/include/sys/cdefs.h: |
| 34 | /usr/include/x86_64-linux-gnu/bits/long-double.h: | 28 | /usr/include/bits/long-double.h: |
| 35 | /usr/include/x86_64-linux-gnu/gnu/stubs.h: | 29 | /usr/include/gnu/stubs.h: |
| 36 | /usr/include/x86_64-linux-gnu/gnu/stubs-64.h: | 30 | /usr/include/gnu/stubs-64.h: |
| 37 | /usr/include/x86_64-linux-gnu/bits/types.h: | 31 | /usr/include/bits/types.h: |
| 38 | /usr/include/x86_64-linux-gnu/bits/typesizes.h: | 32 | /usr/include/bits/typesizes.h: |
| 39 | /usr/include/x86_64-linux-gnu/bits/time64.h: | 33 | /usr/include/bits/time64.h: |
| 40 | /usr/include/x86_64-linux-gnu/bits/wchar.h: | 34 | /usr/include/bits/wchar.h: |
| 41 | /usr/include/x86_64-linux-gnu/bits/stdint-intn.h: | 35 | /usr/include/bits/stdint-intn.h: |
| 42 | /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h: | 36 | /usr/include/bits/stdint-uintn.h: |
| 43 | /usr/include/x86_64-linux-gnu/bits/stdint-least.h: | 37 | /usr/include/bits/stdint-least.h: |
| 44 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stdbool.h: | 38 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdbool.h: |
| 45 | stddef.h: | 39 | stddef.h: |
| 46 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stddef.h: | 40 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stddef.h: |
| 47 | unictype/bitmap.h: | 41 | unictype/bitmap.h: |
| 48 | unictype/ctype_xdigit.h: | 42 | unictype/ctype_xdigit.h: |
diff --git a/gl/uniwidth/.deps/libgnu_a-width.Po b/gl/uniwidth/.deps/libgnu_a-width.Po index f3f0e3fd..f71057dc 100644 --- a/gl/uniwidth/.deps/libgnu_a-width.Po +++ b/gl/uniwidth/.deps/libgnu_a-width.Po | |||
| @@ -1,58 +1,51 @@ | |||
| 1 | uniwidth/libgnu_a-width.o: uniwidth/width.c /usr/include/stdc-predef.h \ | 1 | uniwidth/libgnu_a-width.o: uniwidth/width.c /usr/include/stdc-predef.h \ |
| 2 | ../config.h uniwidth.h unitypes.h \ | 2 | ../config.h uniwidth.h unitypes.h \ |
| 3 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stdint.h /usr/include/stdint.h \ | 3 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdint.h \ |
| 4 | /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ | 4 | /usr/include/stdint.h /usr/include/bits/libc-header-start.h \ |
| 5 | /usr/include/features.h /usr/include/features-time64.h \ | 5 | /usr/include/features.h /usr/include/features-time64.h \ |
| 6 | /usr/include/x86_64-linux-gnu/bits/wordsize.h \ | 6 | /usr/include/bits/wordsize.h /usr/include/bits/timesize.h \ |
| 7 | /usr/include/x86_64-linux-gnu/bits/timesize.h \ | 7 | /usr/include/sys/cdefs.h /usr/include/bits/long-double.h \ |
| 8 | /usr/include/x86_64-linux-gnu/sys/cdefs.h \ | 8 | /usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \ |
| 9 | /usr/include/x86_64-linux-gnu/bits/long-double.h \ | 9 | /usr/include/bits/types.h /usr/include/bits/typesizes.h \ |
| 10 | /usr/include/x86_64-linux-gnu/gnu/stubs.h \ | 10 | /usr/include/bits/time64.h /usr/include/bits/wchar.h \ |
| 11 | /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ | 11 | /usr/include/bits/stdint-intn.h /usr/include/bits/stdint-uintn.h \ |
| 12 | /usr/include/x86_64-linux-gnu/bits/types.h \ | 12 | /usr/include/bits/stdint-least.h stddef.h \ |
| 13 | /usr/include/x86_64-linux-gnu/bits/typesizes.h \ | 13 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stddef.h localcharset.h \ |
| 14 | /usr/include/x86_64-linux-gnu/bits/time64.h \ | ||
| 15 | /usr/include/x86_64-linux-gnu/bits/wchar.h \ | ||
| 16 | /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \ | ||
| 17 | /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ | ||
| 18 | /usr/include/x86_64-linux-gnu/bits/stdint-least.h stddef.h \ | ||
| 19 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stddef.h localcharset.h \ | ||
| 20 | uniwidth/cjk.h streq.h string.h /usr/include/string.h \ | 14 | uniwidth/cjk.h streq.h string.h /usr/include/string.h \ |
| 21 | /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ | 15 | /usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \ |
| 22 | /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h strings.h \ | 16 | strings.h /usr/include/strings.h uniwidth/width0.h uniwidth/width2.h \ |
| 23 | /usr/include/strings.h uniwidth/width0.h uniwidth/width2.h \ | ||
| 24 | unictype/bitmap.h | 17 | unictype/bitmap.h |
| 25 | /usr/include/stdc-predef.h: | 18 | /usr/include/stdc-predef.h: |
| 26 | ../config.h: | 19 | ../config.h: |
| 27 | uniwidth.h: | 20 | uniwidth.h: |
| 28 | unitypes.h: | 21 | unitypes.h: |
| 29 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stdint.h: | 22 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdint.h: |
| 30 | /usr/include/stdint.h: | 23 | /usr/include/stdint.h: |
| 31 | /usr/include/x86_64-linux-gnu/bits/libc-header-start.h: | 24 | /usr/include/bits/libc-header-start.h: |
| 32 | /usr/include/features.h: | 25 | /usr/include/features.h: |
| 33 | /usr/include/features-time64.h: | 26 | /usr/include/features-time64.h: |
| 34 | /usr/include/x86_64-linux-gnu/bits/wordsize.h: | 27 | /usr/include/bits/wordsize.h: |
| 35 | /usr/include/x86_64-linux-gnu/bits/timesize.h: | 28 | /usr/include/bits/timesize.h: |
| 36 | /usr/include/x86_64-linux-gnu/sys/cdefs.h: | 29 | /usr/include/sys/cdefs.h: |
| 37 | /usr/include/x86_64-linux-gnu/bits/long-double.h: | 30 | /usr/include/bits/long-double.h: |
| 38 | /usr/include/x86_64-linux-gnu/gnu/stubs.h: | 31 | /usr/include/gnu/stubs.h: |
| 39 | /usr/include/x86_64-linux-gnu/gnu/stubs-64.h: | 32 | /usr/include/gnu/stubs-64.h: |
| 40 | /usr/include/x86_64-linux-gnu/bits/types.h: | 33 | /usr/include/bits/types.h: |
| 41 | /usr/include/x86_64-linux-gnu/bits/typesizes.h: | 34 | /usr/include/bits/typesizes.h: |
| 42 | /usr/include/x86_64-linux-gnu/bits/time64.h: | 35 | /usr/include/bits/time64.h: |
| 43 | /usr/include/x86_64-linux-gnu/bits/wchar.h: | 36 | /usr/include/bits/wchar.h: |
| 44 | /usr/include/x86_64-linux-gnu/bits/stdint-intn.h: | 37 | /usr/include/bits/stdint-intn.h: |
| 45 | /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h: | 38 | /usr/include/bits/stdint-uintn.h: |
| 46 | /usr/include/x86_64-linux-gnu/bits/stdint-least.h: | 39 | /usr/include/bits/stdint-least.h: |
| 47 | stddef.h: | 40 | stddef.h: |
| 48 | /usr/lib/gcc/x86_64-linux-gnu/15/include/stddef.h: | 41 | /usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stddef.h: |
| 49 | localcharset.h: | 42 | localcharset.h: |
| 50 | uniwidth/cjk.h: | 43 | uniwidth/cjk.h: |
| 51 | streq.h: | 44 | streq.h: |
| 52 | string.h: | 45 | string.h: |
| 53 | /usr/include/string.h: | 46 | /usr/include/string.h: |
| 54 | /usr/include/x86_64-linux-gnu/bits/types/locale_t.h: | 47 | /usr/include/bits/types/locale_t.h: |
| 55 | /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h: | 48 | /usr/include/bits/types/__locale_t.h: |
| 56 | strings.h: | 49 | strings.h: |
| 57 | /usr/include/strings.h: | 50 | /usr/include/strings.h: |
| 58 | uniwidth/width0.h: | 51 | uniwidth/width0.h: |
diff --git a/gl/wchar.in.h b/gl/wchar.in.h index a6c52eb9..b4de3858 100644 --- a/gl/wchar.in.h +++ b/gl/wchar.in.h | |||
| @@ -316,7 +316,7 @@ _GL_EXTERN_C int wcsncmp (const wchar_t *__s1, const wchar_t *__s2, size_t __n) | |||
| 316 | _GL_ATTRIBUTE_NONNULL_IF_NONZERO (1, 3) | 316 | _GL_ATTRIBUTE_NONNULL_IF_NONZERO (1, 3) |
| 317 | _GL_ATTRIBUTE_NONNULL_IF_NONZERO (2, 3); | 317 | _GL_ATTRIBUTE_NONNULL_IF_NONZERO (2, 3); |
| 318 | # ifndef __cplusplus | 318 | # ifndef __cplusplus |
| 319 | _GL_EXTERN_C wchar_t *wmemchr (const wchar_t *__s, wchar_t __wc, size_t __n) | 319 | _GL_EXTERN_C wchar_t *(wmemchr) (const wchar_t *__s, wchar_t __wc, size_t __n) |
| 320 | _GL_ATTRIBUTE_NONNULL_IF_NONZERO (1, 3); | 320 | _GL_ATTRIBUTE_NONNULL_IF_NONZERO (1, 3); |
| 321 | # endif | 321 | # endif |
| 322 | _GL_EXTERN_C wchar_t *wmemset (wchar_t *__s, wchar_t __wc, size_t __n) | 322 | _GL_EXTERN_C wchar_t *wmemset (wchar_t *__s, wchar_t __wc, size_t __n) |
diff --git a/plugins-root/check_icmp.c b/plugins-root/check_icmp.c index 5bfb5cb5..e536e31c 100644 --- a/plugins-root/check_icmp.c +++ b/plugins-root/check_icmp.c | |||
| @@ -277,15 +277,6 @@ typedef struct { | |||
| 277 | check_icmp_config config; | 277 | check_icmp_config config; |
| 278 | } check_icmp_config_wrapper; | 278 | } check_icmp_config_wrapper; |
| 279 | check_icmp_config_wrapper process_arguments(int argc, char **argv) { | 279 | check_icmp_config_wrapper process_arguments(int argc, char **argv) { |
| 280 | /* get calling name the old-fashioned way for portability instead | ||
| 281 | * of relying on the glibc-ism __progname */ | ||
| 282 | char *ptr = strrchr(argv[0], '/'); | ||
| 283 | if (ptr) { | ||
| 284 | progname = &ptr[1]; | ||
| 285 | } else { | ||
| 286 | progname = argv[0]; | ||
| 287 | } | ||
| 288 | |||
| 289 | check_icmp_config_wrapper result = { | 280 | check_icmp_config_wrapper result = { |
| 290 | .errorcode = OK, | 281 | .errorcode = OK, |
| 291 | .config = check_icmp_config_init(), | 282 | .config = check_icmp_config_init(), |
| @@ -828,6 +819,14 @@ int main(int argc, char **argv) { | |||
| 828 | /* POSIXLY_CORRECT might break things, so unset it (the portable way) */ | 819 | /* POSIXLY_CORRECT might break things, so unset it (the portable way) */ |
| 829 | environ = NULL; | 820 | environ = NULL; |
| 830 | 821 | ||
| 822 | /* determine program- and service-name quickly */ | ||
| 823 | progname = strrchr(argv[0], '/'); | ||
| 824 | if (progname != NULL) { | ||
| 825 | progname++; | ||
| 826 | } else { | ||
| 827 | progname = argv[0]; | ||
| 828 | } | ||
| 829 | |||
| 831 | /* Parse extra opts if any */ | 830 | /* Parse extra opts if any */ |
| 832 | argv = np_extra_opts(&argc, argv, progname); | 831 | argv = np_extra_opts(&argc, argv, progname); |
| 833 | 832 | ||
diff --git a/plugins/Makefile.am b/plugins/Makefile.am index a35f273e..9aefcea0 100644 --- a/plugins/Makefile.am +++ b/plugins/Makefile.am | |||
| @@ -166,7 +166,7 @@ check_real_LDADD = $(NETLIBS) | |||
| 166 | check_snmp_SOURCES = check_snmp.c check_snmp.d/check_snmp_helpers.c | 166 | check_snmp_SOURCES = check_snmp.c check_snmp.d/check_snmp_helpers.c |
| 167 | check_snmp_LDADD = $(BASEOBJS) | 167 | check_snmp_LDADD = $(BASEOBJS) |
| 168 | check_snmp_LDFLAGS = $(AM_LDFLAGS) -lm `net-snmp-config --libs` | 168 | check_snmp_LDFLAGS = $(AM_LDFLAGS) -lm `net-snmp-config --libs` |
| 169 | check_snmp_CFLAGS = $(AM_CFLAGS) `net-snmp-config --cflags` | 169 | check_snmp_CFLAGS = $(AM_CFLAGS) `net-snmp-config --cflags | sed 's/-Werror=declaration-after-statement//' | sed 's/-Wundef//'` |
| 170 | check_smtp_LDADD = $(SSLOBJS) | 170 | check_smtp_LDADD = $(SSLOBJS) |
| 171 | check_ssh_LDADD = $(NETLIBS) | 171 | check_ssh_LDADD = $(NETLIBS) |
| 172 | check_swap_SOURCES = check_swap.c check_swap.d/swap.c | 172 | check_swap_SOURCES = check_swap.c check_swap.d/swap.c |
diff --git a/plugins/check_cluster.c b/plugins/check_cluster.c index 1cbdcd60..92c3827a 100644 --- a/plugins/check_cluster.c +++ b/plugins/check_cluster.c | |||
| @@ -175,7 +175,7 @@ check_cluster_config_wrapper process_arguments(int argc, char **argv) { | |||
| 175 | while (true) { | 175 | while (true) { |
| 176 | int option_index = getopt_long(argc, argv, "hHsvVw:c:d:l:", longopts, &option); | 176 | int option_index = getopt_long(argc, argv, "hHsvVw:c:d:l:", longopts, &option); |
| 177 | 177 | ||
| 178 | if (option_index == -1 || option_index == EOF || option_index == 1) { | 178 | if (CHECK_EOF(option_index) || option_index == 1) { |
| 179 | break; | 179 | break; |
| 180 | } | 180 | } |
| 181 | 181 | ||
diff --git a/plugins/check_curl.c b/plugins/check_curl.c index 1dec8a2a..0bc5f9b0 100644 --- a/plugins/check_curl.c +++ b/plugins/check_curl.c | |||
| @@ -946,7 +946,7 @@ check_curl_config_wrapper process_arguments(int argc, char **argv) { | |||
| 946 | int option_index = getopt_long( | 946 | int option_index = getopt_long( |
| 947 | argc, argv, "Vvh46t:c:w:A:k:H:P:j:T:I:a:b:d:e:p:s:R:r:u:f:C:J:K:DnlLS::m:M:NEB", | 947 | argc, argv, "Vvh46t:c:w:A:k:H:P:j:T:I:a:b:d:e:p:s:R:r:u:f:C:J:K:DnlLS::m:M:NEB", |
| 948 | longopts, &option); | 948 | longopts, &option); |
| 949 | if (option_index == -1 || option_index == EOF || option_index == 1) { | 949 | if (CHECK_EOF(option_index) || option_index == 1) { |
| 950 | break; | 950 | break; |
| 951 | } | 951 | } |
| 952 | 952 | ||
diff --git a/plugins/check_dig.c b/plugins/check_dig.c index 9ea19e6a..9ec8028a 100644 --- a/plugins/check_dig.c +++ b/plugins/check_dig.c | |||
| @@ -284,7 +284,7 @@ check_dig_config_wrapper process_arguments(int argc, char **argv) { | |||
| 284 | int option_index = | 284 | int option_index = |
| 285 | getopt_long(argc, argv, "hVvt:l:H:w:c:T:p:a:A:E:X:46", longopts, &option); | 285 | getopt_long(argc, argv, "hVvt:l:H:w:c:T:p:a:A:E:X:46", longopts, &option); |
| 286 | 286 | ||
| 287 | if (option_index == -1 || option_index == EOF) { | 287 | if (CHECK_EOF(option_index)) { |
| 288 | break; | 288 | break; |
| 289 | } | 289 | } |
| 290 | 290 | ||
diff --git a/plugins/check_disk.c b/plugins/check_disk.c index e1a2baff..4ec1b211 100644 --- a/plugins/check_disk.c +++ b/plugins/check_disk.c | |||
| @@ -448,7 +448,7 @@ check_disk_config_wrapper process_arguments(int argc, char **argv) { | |||
| 448 | int option_index = getopt_long( | 448 | int option_index = getopt_long( |
| 449 | argc, argv, "+?VqhvefCt:c:w:K:W:u:p:x:X:N:mklLPg:R:r:i:I:MEAn", longopts, &option); | 449 | argc, argv, "+?VqhvefCt:c:w:K:W:u:p:x:X:N:mklLPg:R:r:i:I:MEAn", longopts, &option); |
| 450 | 450 | ||
| 451 | if (option_index == -1 || option_index == EOF) { | 451 | if (CHECK_EOF(option_index)) { |
| 452 | break; | 452 | break; |
| 453 | } | 453 | } |
| 454 | 454 | ||
diff --git a/plugins/check_fping.c b/plugins/check_fping.c index 6160c2cb..86ef64a4 100644 --- a/plugins/check_fping.c +++ b/plugins/check_fping.c | |||
| @@ -361,7 +361,7 @@ check_fping_config_wrapper process_arguments(int argc, char **argv) { | |||
| 361 | int option_index = | 361 | int option_index = |
| 362 | getopt_long(argc, argv, "+hVvaH:S:c:w:b:n:T:i:I:M:R:46", longopts, &option); | 362 | getopt_long(argc, argv, "+hVvaH:S:c:w:b:n:T:i:I:M:R:46", longopts, &option); |
| 363 | 363 | ||
| 364 | if (option_index == -1 || option_index == EOF || option_index == 1) { | 364 | if (CHECK_EOF(option_index) || option_index == 1) { |
| 365 | break; | 365 | break; |
| 366 | } | 366 | } |
| 367 | 367 | ||
diff --git a/plugins/check_game.c b/plugins/check_game.c index 974a7253..48ec6883 100644 --- a/plugins/check_game.c +++ b/plugins/check_game.c | |||
| @@ -186,7 +186,7 @@ check_game_config_wrapper process_arguments(int argc, char **argv) { | |||
| 186 | while (true) { | 186 | while (true) { |
| 187 | int option_index = getopt_long(argc, argv, "hVvt:H:P:G:g:p:m:", long_opts, &opt_index); | 187 | int option_index = getopt_long(argc, argv, "hVvt:H:P:G:g:p:m:", long_opts, &opt_index); |
| 188 | 188 | ||
| 189 | if (option_index == -1 || option_index == EOF) { | 189 | if (CHECK_EOF(option_index)) { |
| 190 | break; | 190 | break; |
| 191 | } | 191 | } |
| 192 | 192 | ||
diff --git a/plugins/check_hpjd.c b/plugins/check_hpjd.c index 9907abc5..883f1df0 100644 --- a/plugins/check_hpjd.c +++ b/plugins/check_hpjd.c | |||
| @@ -299,7 +299,7 @@ check_hpjd_config_wrapper process_arguments(int argc, char **argv) { | |||
| 299 | while (true) { | 299 | while (true) { |
| 300 | int option_index = getopt_long(argc, argv, "+hVH:C:p:D", longopts, &option); | 300 | int option_index = getopt_long(argc, argv, "+hVH:C:p:D", longopts, &option); |
| 301 | 301 | ||
| 302 | if (option_index == -1 || option_index == EOF || option_index == 1) { | 302 | if (CHECK_EOF(option_index) || option_index == 1) { |
| 303 | break; | 303 | break; |
| 304 | } | 304 | } |
| 305 | 305 | ||
diff --git a/plugins/check_ide_smart.c b/plugins/check_ide_smart.c index c1325cf9..43731039 100644 --- a/plugins/check_ide_smart.c +++ b/plugins/check_ide_smart.c | |||
| @@ -169,7 +169,7 @@ static check_ide_smart_config_wrapper process_arguments(int argc, char **argv) { | |||
| 169 | int longindex = 0; | 169 | int longindex = 0; |
| 170 | int option_index = getopt_long(argc, argv, "+d:iq10nhVv", longopts, &longindex); | 170 | int option_index = getopt_long(argc, argv, "+d:iq10nhVv", longopts, &longindex); |
| 171 | 171 | ||
| 172 | if (option_index == -1 || option_index == EOF || option_index == 1) { | 172 | if (CHECK_EOF(option_index) || option_index == 1) { |
| 173 | break; | 173 | break; |
| 174 | } | 174 | } |
| 175 | 175 | ||
diff --git a/plugins/check_ldap.c b/plugins/check_ldap.c index 1b2e2826..300a0dc1 100644 --- a/plugins/check_ldap.c +++ b/plugins/check_ldap.c | |||
| @@ -362,7 +362,7 @@ check_ldap_config_wrapper process_arguments(int argc, char **argv) { | |||
| 362 | int option_index = | 362 | int option_index = |
| 363 | getopt_long(argc, argv, "hvV234TS6t:c:w:H:b:p:a:D:P:C:W:", longopts, &option); | 363 | getopt_long(argc, argv, "hvV234TS6t:c:w:H:b:p:a:D:P:C:W:", longopts, &option); |
| 364 | 364 | ||
| 365 | if (option_index == -1 || option_index == EOF) { | 365 | if (CHECK_EOF(option_index)) { |
| 366 | break; | 366 | break; |
| 367 | } | 367 | } |
| 368 | 368 | ||
diff --git a/plugins/check_load.c b/plugins/check_load.c index 644cd604..60fa646f 100644 --- a/plugins/check_load.c +++ b/plugins/check_load.c | |||
| @@ -295,7 +295,7 @@ static check_load_config_wrapper process_arguments(int argc, char **argv) { | |||
| 295 | int option = 0; | 295 | int option = 0; |
| 296 | int option_index = getopt_long(argc, argv, "Vhrc:w:n:", longopts, &option); | 296 | int option_index = getopt_long(argc, argv, "Vhrc:w:n:", longopts, &option); |
| 297 | 297 | ||
| 298 | if (option_index == -1 || option_index == EOF) { | 298 | if (CHECK_EOF(option_index)) { |
| 299 | break; | 299 | break; |
| 300 | } | 300 | } |
| 301 | 301 | ||
diff --git a/plugins/check_mysql.c b/plugins/check_mysql.c index 26730d4c..20b4ac3f 100644 --- a/plugins/check_mysql.c +++ b/plugins/check_mysql.c | |||
| @@ -504,7 +504,7 @@ check_mysql_config_wrapper process_arguments(int argc, char **argv) { | |||
| 504 | int option_index = | 504 | int option_index = |
| 505 | getopt_long(argc, argv, "hlvVnSP:p:u:d:H:s:c:w:a:k:C:D:L:f:g:", longopts, &option); | 505 | getopt_long(argc, argv, "hlvVnSP:p:u:d:H:s:c:w:a:k:C:D:L:f:g:", longopts, &option); |
| 506 | 506 | ||
| 507 | if (option_index == -1 || option_index == EOF) { | 507 | if (CHECK_EOF(option_index)) { |
| 508 | break; | 508 | break; |
| 509 | } | 509 | } |
| 510 | 510 | ||
diff --git a/plugins/check_nagios.c b/plugins/check_nagios.c index a46dc1ed..e2f230c9 100644 --- a/plugins/check_nagios.c +++ b/plugins/check_nagios.c | |||
| @@ -227,7 +227,7 @@ check_nagios_config_wrapper process_arguments(int argc, char **argv) { | |||
| 227 | while (true) { | 227 | while (true) { |
| 228 | int option_index = getopt_long(argc, argv, "+hVvF:C:e:t:", longopts, &option); | 228 | int option_index = getopt_long(argc, argv, "+hVvF:C:e:t:", longopts, &option); |
| 229 | 229 | ||
| 230 | if (option_index == -1 || option_index == EOF || option_index == 1) { | 230 | if (CHECK_EOF(option_index) || option_index == 1) { |
| 231 | break; | 231 | break; |
| 232 | } | 232 | } |
| 233 | 233 | ||
diff --git a/plugins/check_ping.c b/plugins/check_ping.c index 61feb958..cb9e8f57 100644 --- a/plugins/check_ping.c +++ b/plugins/check_ping.c | |||
| @@ -221,7 +221,7 @@ check_ping_config_wrapper process_arguments(int argc, char **argv) { | |||
| 221 | while (true) { | 221 | while (true) { |
| 222 | int option_index = getopt_long(argc, argv, "VvhnL46t:c:w:H:p:", longopts, &option); | 222 | int option_index = getopt_long(argc, argv, "VvhnL46t:c:w:H:p:", longopts, &option); |
| 223 | 223 | ||
| 224 | if (option_index == -1 || option_index == EOF) { | 224 | if (CHECK_EOF(option_index)) { |
| 225 | break; | 225 | break; |
| 226 | } | 226 | } |
| 227 | 227 | ||
diff --git a/plugins/check_procs.c b/plugins/check_procs.c index ae6e9c23..01476504 100644 --- a/plugins/check_procs.c +++ b/plugins/check_procs.c | |||
| @@ -432,7 +432,7 @@ check_procs_config_wrapper process_arguments(int argc, char **argv) { | |||
| 432 | int option_index = | 432 | int option_index = |
| 433 | getopt_long(argc, argv, "Vvhkt:c:w:p:s:u:C:a:z:r:m:P:T:X:", longopts, &option); | 433 | getopt_long(argc, argv, "Vvhkt:c:w:p:s:u:C:a:z:r:m:P:T:X:", longopts, &option); |
| 434 | 434 | ||
| 435 | if (option_index == -1 || option_index == EOF) { | 435 | if (CHECK_EOF(option_index)) { |
| 436 | break; | 436 | break; |
| 437 | } | 437 | } |
| 438 | 438 | ||
diff --git a/plugins/check_radius.c b/plugins/check_radius.c index 93352bcc..6e062ff8 100644 --- a/plugins/check_radius.c +++ b/plugins/check_radius.c | |||
| @@ -332,7 +332,7 @@ check_radius_config_wrapper process_arguments(int argc, char **argv) { | |||
| 332 | int option = 0; | 332 | int option = 0; |
| 333 | int option_index = getopt_long(argc, argv, "+hVvH:P:F:u:p:n:N:t:r:e:", longopts, &option); | 333 | int option_index = getopt_long(argc, argv, "+hVvH:P:F:u:p:n:N:t:r:e:", longopts, &option); |
| 334 | 334 | ||
| 335 | if (option_index == -1 || option_index == EOF || option_index == 1) { | 335 | if (CHECK_EOF(option_index) || option_index == 1) { |
| 336 | break; | 336 | break; |
| 337 | } | 337 | } |
| 338 | 338 | ||
diff --git a/plugins/check_real.d/config.h b/plugins/check_real.d/config.h index 2d99ad49..314aff37 100644 --- a/plugins/check_real.d/config.h +++ b/plugins/check_real.d/config.h | |||
| @@ -9,7 +9,7 @@ enum { | |||
| 9 | PORT = 554 | 9 | PORT = 554 |
| 10 | }; | 10 | }; |
| 11 | 11 | ||
| 12 | const char *default_expect = "RTSP/1."; | 12 | char *default_expect = "RTSP/1."; |
| 13 | 13 | ||
| 14 | typedef struct { | 14 | typedef struct { |
| 15 | char *server_address; | 15 | char *server_address; |
diff --git a/plugins/check_snmp.c b/plugins/check_snmp.c index f470d222..2b3099c9 100644 --- a/plugins/check_snmp.c +++ b/plugins/check_snmp.c | |||
| @@ -116,6 +116,7 @@ gen_state_string_type gen_state_string(check_snmp_state_entry *entries, size_t n | |||
| 116 | break; | 116 | break; |
| 117 | case ASN_FLOAT: | 117 | case ASN_FLOAT: |
| 118 | printf("Type FLOAT\n"); | 118 | printf("Type FLOAT\n"); |
| 119 | break; | ||
| 119 | case ASN_DOUBLE: | 120 | case ASN_DOUBLE: |
| 120 | printf("Type DOUBLE\n"); | 121 | printf("Type DOUBLE\n"); |
| 121 | break; | 122 | break; |
| @@ -217,6 +218,7 @@ recover_state_data_type recover_state_data(char *state_string, idx_t state_strin | |||
| 217 | break; | 218 | break; |
| 218 | case ASN_FLOAT: | 219 | case ASN_FLOAT: |
| 219 | printf("Type FLOAT\n"); | 220 | printf("Type FLOAT\n"); |
| 221 | break; | ||
| 220 | case ASN_DOUBLE: | 222 | case ASN_DOUBLE: |
| 221 | printf("Type DOUBLE\n"); | 223 | printf("Type DOUBLE\n"); |
| 222 | break; | 224 | break; |
| @@ -254,7 +256,10 @@ int main(int argc, char **argv) { | |||
| 254 | 256 | ||
| 255 | timeout_interval = DEFAULT_SOCKET_TIMEOUT; | 257 | timeout_interval = DEFAULT_SOCKET_TIMEOUT; |
| 256 | 258 | ||
| 257 | np_init((char *)progname, argc, argv); | 259 | char progname_copy[256]; |
| 260 | strncpy(progname_copy, progname, sizeof(progname_copy)-1); | ||
| 261 | progname_copy[255] = '\0'; | ||
| 262 | np_init(progname_copy, argc, argv); | ||
| 258 | 263 | ||
| 259 | state_key stateKey = np_enable_state(NULL, 1, progname, argc, argv); | 264 | state_key stateKey = np_enable_state(NULL, 1, progname, argc, argv); |
| 260 | 265 | ||
| @@ -445,7 +450,7 @@ static process_arguments_wrapper process_arguments(int argc, char **argv) { | |||
| 445 | argc, argv, | 450 | argc, argv, |
| 446 | "nhvVO46t:c:w:H:C:o:e:E:d:D:s:t:R:r:l:u:p:m:P:N:L:U:a:x:A:X:M:f:z:", longopts, &option); | 451 | "nhvVO46t:c:w:H:C:o:e:E:d:D:s:t:R:r:l:u:p:m:P:N:L:U:a:x:A:X:M:f:z:", longopts, &option); |
| 447 | 452 | ||
| 448 | if (option_char == -1 || option_char == EOF) { | 453 | if (CHECK_EOF(option_char)) { |
| 449 | break; | 454 | break; |
| 450 | } | 455 | } |
| 451 | 456 | ||
| @@ -506,8 +511,8 @@ static process_arguments_wrapper process_arguments(int argc, char **argv) { | |||
| 506 | unsigned char *privpasswd = NULL; | 511 | unsigned char *privpasswd = NULL; |
| 507 | int cflags = REG_EXTENDED | REG_NOSUB | REG_NEWLINE; | 512 | int cflags = REG_EXTENDED | REG_NOSUB | REG_NEWLINE; |
| 508 | char *port = NULL; | 513 | char *port = NULL; |
| 509 | char *miblist = NULL; | 514 | const char *miblist = NULL; |
| 510 | char *connection_prefix = NULL; | 515 | const char *connection_prefix = NULL; |
| 511 | bool snmp_version_set_explicitely = false; | 516 | bool snmp_version_set_explicitely = false; |
| 512 | // TODO error checking | 517 | // TODO error checking |
| 513 | while (true) { | 518 | while (true) { |
| @@ -515,7 +520,7 @@ static process_arguments_wrapper process_arguments(int argc, char **argv) { | |||
| 515 | argc, argv, | 520 | argc, argv, |
| 516 | "nhvVO46t:c:w:H:C:o:e:E:d:D:s:t:R:r:l:u:p:m:P:N:L:U:a:x:A:X:M:f:z:", longopts, &option); | 521 | "nhvVO46t:c:w:H:C:o:e:E:d:D:s:t:R:r:l:u:p:m:P:N:L:U:a:x:A:X:M:f:z:", longopts, &option); |
| 517 | 522 | ||
| 518 | if (option_char == -1 || option_char == EOF) { | 523 | if (CHECK_EOF(option_char)) { |
| 519 | break; | 524 | break; |
| 520 | } | 525 | } |
| 521 | 526 | ||
diff --git a/plugins/check_snmp.d/check_snmp_helpers.c b/plugins/check_snmp.d/check_snmp_helpers.c index 2dfc88b5..d680678a 100644 --- a/plugins/check_snmp.d/check_snmp_helpers.c +++ b/plugins/check_snmp.d/check_snmp_helpers.c | |||
| @@ -91,6 +91,8 @@ const char DEFAULT_OUTPUT_DELIMITER[] = " "; | |||
| 91 | 91 | ||
| 92 | const int RANDOM_STATE_DATA_LENGTH_PREDICTION = 8192; | 92 | const int RANDOM_STATE_DATA_LENGTH_PREDICTION = 8192; |
| 93 | 93 | ||
| 94 | char community[100]; | ||
| 95 | |||
| 94 | check_snmp_config check_snmp_config_init() { | 96 | check_snmp_config check_snmp_config_init() { |
| 95 | check_snmp_config tmp = { | 97 | check_snmp_config tmp = { |
| 96 | .snmp_params = | 98 | .snmp_params = |
| @@ -129,14 +131,17 @@ check_snmp_config check_snmp_config_init() { | |||
| 129 | tmp.snmp_params.snmp_session.retries = DEFAULT_RETRIES; | 131 | tmp.snmp_params.snmp_session.retries = DEFAULT_RETRIES; |
| 130 | tmp.snmp_params.snmp_session.version = DEFAULT_SNMP_VERSION; | 132 | tmp.snmp_params.snmp_session.version = DEFAULT_SNMP_VERSION; |
| 131 | tmp.snmp_params.snmp_session.securityLevel = SNMP_SEC_LEVEL_NOAUTH; | 133 | tmp.snmp_params.snmp_session.securityLevel = SNMP_SEC_LEVEL_NOAUTH; |
| 132 | tmp.snmp_params.snmp_session.community = (unsigned char *)"public"; | 134 | strcpy(community, "public"); |
| 133 | tmp.snmp_params.snmp_session.community_len = strlen("public"); | 135 | tmp.snmp_params.snmp_session.community = (unsigned char *)community; |
| 136 | tmp.snmp_params.snmp_session.community_len = strlen(community); | ||
| 134 | return tmp; | 137 | return tmp; |
| 135 | } | 138 | } |
| 136 | 139 | ||
| 137 | snmp_responces do_snmp_query(check_snmp_config_snmp_parameters parameters) { | 140 | snmp_responces do_snmp_query(check_snmp_config_snmp_parameters parameters) { |
| 138 | if (parameters.ignore_mib_parsing_errors) { | 141 | if (parameters.ignore_mib_parsing_errors) { |
| 139 | char *opt_toggle_res = snmp_mib_toggle_options("e"); | 142 | char option_e[2]; |
| 143 | option_e[0] = 'e'; option_e[1] = '\0'; | ||
| 144 | char *opt_toggle_res = snmp_mib_toggle_options(option_e); | ||
| 140 | if (opt_toggle_res != NULL) { | 145 | if (opt_toggle_res != NULL) { |
| 141 | die(STATE_UNKNOWN, "Unable to disable MIB parsing errors"); | 146 | die(STATE_UNKNOWN, "Unable to disable MIB parsing errors"); |
| 142 | } | 147 | } |
| @@ -436,7 +441,7 @@ check_snmp_evaluation evaluate_single_unit(response_value response, | |||
| 436 | } | 441 | } |
| 437 | } else { | 442 | } else { |
| 438 | // It's only a counter if we cont compute rate | 443 | // It's only a counter if we cont compute rate |
| 439 | pd_num_val.uom = "c"; | 444 | pd_num_val.uom = strdup("c"); |
| 440 | pd_result_val = mp_create_pd_value(response.value.uIntVal); | 445 | pd_result_val = mp_create_pd_value(response.value.uIntVal); |
| 441 | } | 446 | } |
| 442 | break; | 447 | break; |
| @@ -476,7 +481,7 @@ check_snmp_evaluation evaluate_single_unit(response_value response, | |||
| 476 | pd_result_val = mp_create_pd_value(treated_value); | 481 | pd_result_val = mp_create_pd_value(treated_value); |
| 477 | 482 | ||
| 478 | if (response.type == ASN_COUNTER) { | 483 | if (response.type == ASN_COUNTER) { |
| 479 | pd_num_val.uom = "c"; | 484 | pd_num_val.uom = strdup("c"); |
| 480 | } | 485 | } |
| 481 | } | 486 | } |
| 482 | 487 | ||
| @@ -820,7 +825,7 @@ state_data *np_state_read(state_key stateKey) { | |||
| 820 | * envvar NAGIOS_PLUGIN_STATE_DIRECTORY | 825 | * envvar NAGIOS_PLUGIN_STATE_DIRECTORY |
| 821 | * statically compiled shared state directory | 826 | * statically compiled shared state directory |
| 822 | */ | 827 | */ |
| 823 | char *_np_state_calculate_location_prefix(void) { | 828 | static const char *_np_state_calculate_location_prefix(void) { |
| 824 | char *env_dir; | 829 | char *env_dir; |
| 825 | 830 | ||
| 826 | /* Do not allow passing MP_STATE_PATH in setuid plugins | 831 | /* Do not allow passing MP_STATE_PATH in setuid plugins |
| @@ -871,7 +876,7 @@ state_key np_enable_state(char *keyname, int expected_data_version, const char * | |||
| 871 | tmp_char++; | 876 | tmp_char++; |
| 872 | } | 877 | } |
| 873 | this_state->name = temp_keyname; | 878 | this_state->name = temp_keyname; |
| 874 | this_state->plugin_name = (char *)plugin_name; | 879 | this_state->plugin_name = strdup(plugin_name); |
| 875 | this_state->data_version = expected_data_version; | 880 | this_state->data_version = expected_data_version; |
| 876 | this_state->state_data = NULL; | 881 | this_state->state_data = NULL; |
| 877 | 882 | ||
diff --git a/plugins/check_tcp.c b/plugins/check_tcp.c index 09806373..ec334941 100644 --- a/plugins/check_tcp.c +++ b/plugins/check_tcp.c | |||
| @@ -550,7 +550,7 @@ static check_tcp_config_wrapper process_arguments(int argc, char **argv, check_t | |||
| 550 | int option_index = | 550 | int option_index = |
| 551 | getopt_long(argc, argv, "+hVv46EAH:s:e:q:m:c:w:t:p:C:W:d:Sr:jD:M:", longopts, &option); | 551 | getopt_long(argc, argv, "+hVv46EAH:s:e:q:m:c:w:t:p:C:W:d:Sr:jD:M:", longopts, &option); |
| 552 | 552 | ||
| 553 | if (option_index == -1 || option_index == EOF || option_index == 1) { | 553 | if (CHECK_EOF(option_index) || option_index == 1) { |
| 554 | break; | 554 | break; |
| 555 | } | 555 | } |
| 556 | 556 | ||
diff --git a/plugins/check_time.c b/plugins/check_time.c index 99708ad3..aec995d4 100644 --- a/plugins/check_time.c +++ b/plugins/check_time.c | |||
| @@ -213,7 +213,7 @@ check_time_config_wrapper process_arguments(int argc, char **argv) { | |||
| 213 | int option = 0; | 213 | int option = 0; |
| 214 | option_char = getopt_long(argc, argv, "hVH:w:c:W:C:p:t:u", longopts, &option); | 214 | option_char = getopt_long(argc, argv, "hVH:w:c:W:C:p:t:u", longopts, &option); |
| 215 | 215 | ||
| 216 | if (option_char == -1 || option_char == EOF) { | 216 | if (CHECK_EOF(option_char)) { |
| 217 | break; | 217 | break; |
| 218 | } | 218 | } |
| 219 | 219 | ||
diff --git a/plugins/common.h b/plugins/common.h index ef888d08..9d1434a3 100644 --- a/plugins/common.h +++ b/plugins/common.h | |||
| @@ -193,7 +193,7 @@ enum { | |||
| 193 | */ | 193 | */ |
| 194 | #include "../gl/gettext.h" | 194 | #include "../gl/gettext.h" |
| 195 | #define _(String) gettext(String) | 195 | #define _(String) gettext(String) |
| 196 | #if !ENABLE_NLS | 196 | #if !defined(ENABLE_NLS) || !ENABLE_NLS |
| 197 | # undef textdomain | 197 | # undef textdomain |
| 198 | # define textdomain(Domainname) /* empty */ | 198 | # define textdomain(Domainname) /* empty */ |
| 199 | # undef bindtextdomain | 199 | # undef bindtextdomain |
| @@ -205,4 +205,11 @@ enum { | |||
| 205 | # define __attribute__(x) /* do nothing */ | 205 | # define __attribute__(x) /* do nothing */ |
| 206 | #endif | 206 | #endif |
| 207 | 207 | ||
| 208 | /* for checking the result of getopt_long */ | ||
| 209 | #if EOF == -1 | ||
| 210 | #define CHECK_EOF(c) ((c) == EOF) | ||
| 211 | #else | ||
| 212 | #define CHECK_EOF(c) ((c) == -1 || (c) == EOF) | ||
| 213 | #endif | ||
| 214 | |||
| 208 | #endif /* _COMMON_H_ */ | 215 | #endif /* _COMMON_H_ */ |
diff --git a/plugins/utils.h b/plugins/utils.h index 68ff1630..c1c921fb 100644 --- a/plugins/utils.h +++ b/plugins/utils.h | |||
| @@ -13,6 +13,7 @@ in order to resist overflow attacks. In addition, a few functions are | |||
| 13 | provided to standardize version and error reporting across the entire | 13 | provided to standardize version and error reporting across the entire |
| 14 | suite of plugins. */ | 14 | suite of plugins. */ |
| 15 | 15 | ||
| 16 | #undef USE_OPENSSL // net-snmp defines USE_OPENSSL as NETSNMP_USE_OPENSSL in net-snmp-config.h | ||
| 16 | #include "../config.h" | 17 | #include "../config.h" |
| 17 | #include <stdbool.h> | 18 | #include <stdbool.h> |
| 18 | #include <stdint.h> | 19 | #include <stdint.h> |
