Commit fadc8073331ffcefe9e874b20ed8c7f9716d41a3

Thomas de Grivel 2023-01-25T10:24:29

copyright

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
diff --git a/Makefile b/Makefile
index 499eb95..92bfc2f 100644
--- a/Makefile
+++ b/Makefile
@@ -10,7 +10,7 @@
 ## PURPOSE AND PERFORMANCE. IN NO EVENT WHATSOEVER SHALL THE
 ## AUTHOR BE CONSIDERED LIABLE FOR THE USE AND PERFORMANCE OF
 ## THIS SOFTWARE.
-##
+
 build:
 	${MAKE} -C libtommath build
 	${MAKE} -C ucd2c build
@@ -144,3 +144,4 @@ test_ic3: build
 .PHONY: all asan c3s cov clean clean_cov debug gcovr ic3 install libc3 libtommath license test test_asan test_cov test_debug test_gcovr test_ic3
 
 include config.mk
+include sources.mk
diff --git a/c3c/Makefile b/c3c/Makefile
index 540845b..e4300ec 100644
--- a/c3c/Makefile
+++ b/c3c/Makefile
@@ -1,5 +1,5 @@
 ## c3
-## Copyright 2022 kmx.io <contact@kmx.io>
+## Copyright 2022,2023 kmx.io <contact@kmx.io>
 ##
 ## Permission is hereby granted to use this software excepted
 ## on Apple computers granted the above copyright notice and
diff --git a/c3c/c3c.c b/c3c/c3c.c
index 66a4b40..05fe181 100644
--- a/c3c/c3c.c
+++ b/c3c/c3c.c
@@ -1,7 +1,16 @@
 /* c3
- * Copyright 2022 Thomas de Grivel
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
+ *
+ * Permission is hereby granted to use this software excepted
+ * on Apple computers granted the above copyright notice and
+ * this permission paragraph are included in all copies and
+ * substantial portions of this software.
+ *
+ * THIS SOFTWARE IS PROVIDED "AS-IS" WITHOUT ANY GUARANTEE OF
+ * PURPOSE AND PERFORMANCE. IN NO EVENT WHATSOEVER SHALL THE
+ * AUTHOR BE CONSIDERED LIABLE FOR THE USE AND PERFORMANCE OF
+ * THIS SOFTWARE.
  */
-
 int main (int argc, char **argv)
 {
   (void) argc;
diff --git a/c3c/configure b/c3c/configure
index a3478fb..dff41c0 100755
--- a/c3c/configure
+++ b/c3c/configure
@@ -1,6 +1,6 @@
 #!/bin/sh
 ## c3
-## Copyright 2022 kmx.io <contact@kmx.io>
+## Copyright 2022,2023 kmx.io <contact@kmx.io>
 ##
 ## Permission is hereby granted to use this software excepted
 ## on Apple computers granted the above copyright notice and
diff --git a/c3s/Makefile b/c3s/Makefile
index 9ff39fe..a4d2f41 100644
--- a/c3s/Makefile
+++ b/c3s/Makefile
@@ -1,5 +1,5 @@
 ## c3
-## Copyright 2022 kmx.io <contact@kmx.io>
+## Copyright 2022,2023 kmx.io <contact@kmx.io>
 ##
 ## Permission is hereby granted to use this software excepted
 ## on Apple computers granted the above copyright notice and
diff --git a/c3s/buf_readline.c b/c3s/buf_readline.c
index cc84795..d8c672c 100644
--- a/c3s/buf_readline.c
+++ b/c3s/buf_readline.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/c3s/buf_readline.h b/c3s/buf_readline.h
index 32fdc09..23f695a 100644
--- a/c3s/buf_readline.h
+++ b/c3s/buf_readline.h
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/c3s/c3s.c b/c3s/c3s.c
index 4b3608a..cae8f18 100644
--- a/c3s/c3s.c
+++ b/c3s/c3s.c
@@ -1,10 +1,10 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
- * Permission is hereby granted to use this software granted
- * the above copyright notice and this permission paragraph
- * are included in all copies and substantial portions of this
- * software.
+ * Permission is hereby granted to use this software excepted
+ * on Apple computers granted the above copyright notice and
+ * this permission paragraph are included in all copies and
+ * substantial portions of this software.
  *
  * THIS SOFTWARE IS PROVIDED "AS-IS" WITHOUT ANY GUARANTEE OF
  * PURPOSE AND PERFORMANCE. IN NO EVENT WHATSOEVER SHALL THE
diff --git a/c3s/configure b/c3s/configure
index dd6560f..58d34c6 100755
--- a/c3s/configure
+++ b/c3s/configure
@@ -1,6 +1,6 @@
 #!/bin/sh
 ## c3
-## Copyright 2022 kmx.io <contact@kmx.io>
+## Copyright 2022,2023 kmx.io <contact@kmx.io>
 ##
 ## Permission is hereby granted to use this software excepted
 ## on Apple computers granted the above copyright notice and
diff --git a/c3s/update_sources b/c3s/update_sources
index bfecdd7..74c1c03 100755
--- a/c3s/update_sources
+++ b/c3s/update_sources
@@ -1,4 +1,16 @@
 #!/bin/sh
+## c3
+## Copyright 2022,2023 kmx.io <contact@kmx.io>
+##
+## Permission is hereby granted to use this software excepted
+## on Apple computers granted the above copyright notice and
+## this permission paragraph are included in all copies and
+## substantial portions of this software.
+##
+## THIS SOFTWARE IS PROVIDED "AS-IS" WITHOUT ANY GUARANTEE OF
+## PURPOSE AND PERFORMANCE. IN NO EVENT WHATSOEVER SHALL THE
+## AUTHOR BE CONSIDERED LIABLE FOR THE USE AND PERFORMANCE OF
+## THIS SOFTWARE.
 
 . ../config.subr
 
diff --git a/config.subr b/config.subr
index c25331e..edeceeb 100644
--- a/config.subr
+++ b/config.subr
@@ -11,6 +11,7 @@
 ## PURPOSE AND PERFORMANCE. IN NO EVENT WHATSOEVER SHALL THE
 ## AUTHOR BE CONSIDERED LIABLE FOR THE USE AND PERFORMANCE OF
 ## THIS SOFTWARE.
+
 set -e
 
 echo "$(basename "$PWD")/$(basename "$0")"
diff --git a/ic3/Makefile b/ic3/Makefile
index 4e1db2a..cd7b043 100644
--- a/ic3/Makefile
+++ b/ic3/Makefile
@@ -1,5 +1,5 @@
 ## c3
-## Copyright 2022 kmx.io <contact@kmx.io>
+## Copyright 2022,2023 kmx.io <contact@kmx.io>
 ##
 ## Permission is hereby granted to use this software excepted
 ## on Apple computers granted the above copyright notice and
diff --git a/ic3/buf_linenoise.c b/ic3/buf_linenoise.c
index f4abb12..79ab3f6 100644
--- a/ic3/buf_linenoise.c
+++ b/ic3/buf_linenoise.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/ic3/buf_linenoise.h b/ic3/buf_linenoise.h
index f4637d0..331b21a 100644
--- a/ic3/buf_linenoise.h
+++ b/ic3/buf_linenoise.h
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/ic3/configure b/ic3/configure
index de90afd..101cc31 100755
--- a/ic3/configure
+++ b/ic3/configure
@@ -1,6 +1,6 @@
 #!/bin/sh
 ## c3
-## Copyright 2022 kmx.io <contact@kmx.io>
+## Copyright 2022,2023 kmx.io <contact@kmx.io>
 ##
 ## Permission is hereby granted to use this software excepted
 ## on Apple computers granted the above copyright notice and
diff --git a/ic3/ic3.c b/ic3/ic3.c
index 5565789..ed8815c 100644
--- a/ic3/ic3.c
+++ b/ic3/ic3.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/ic3/linenoise.c b/ic3/linenoise.c
index c06fcf9..299bab8 100644
--- a/ic3/linenoise.c
+++ b/ic3/linenoise.c
@@ -1 +1,14 @@
+/* c3
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
+ *
+ * Permission is hereby granted to use this software excepted
+ * on Apple computers granted the above copyright notice and
+ * this permission paragraph are included in all copies and
+ * substantial portions of this software.
+ *
+ * THIS SOFTWARE IS PROVIDED "AS-IS" WITHOUT ANY GUARANTEE OF
+ * PURPOSE AND PERFORMANCE. IN NO EVENT WHATSOEVER SHALL THE
+ * AUTHOR BE CONSIDERED LIABLE FOR THE USE AND PERFORMANCE OF
+ * THIS SOFTWARE.
+ */
 #include "../linenoise/linenoise.c"
diff --git a/ic3/update_sources b/ic3/update_sources
index bfecdd7..74c1c03 100755
--- a/ic3/update_sources
+++ b/ic3/update_sources
@@ -1,4 +1,16 @@
 #!/bin/sh
+## c3
+## Copyright 2022,2023 kmx.io <contact@kmx.io>
+##
+## Permission is hereby granted to use this software excepted
+## on Apple computers granted the above copyright notice and
+## this permission paragraph are included in all copies and
+## substantial portions of this software.
+##
+## THIS SOFTWARE IS PROVIDED "AS-IS" WITHOUT ANY GUARANTEE OF
+## PURPOSE AND PERFORMANCE. IN NO EVENT WHATSOEVER SHALL THE
+## AUTHOR BE CONSIDERED LIABLE FOR THE USE AND PERFORMANCE OF
+## THIS SOFTWARE.
 
 . ../config.subr
 
diff --git a/libc3/Makefile b/libc3/Makefile
index 094da1e..10cfe61 100644
--- a/libc3/Makefile
+++ b/libc3/Makefile
@@ -10,7 +10,7 @@
 ## PURPOSE AND PERFORMANCE. IN NO EVENT WHATSOEVER SHALL THE
 ## AUTHOR BE CONSIDERED LIABLE FOR THE USE AND PERFORMANCE OF
 ## THIS SOFTWARE.
-##
+
 CLEANFILES = *.a *.gcno *.la .libs *.lo *.o
 
 CLEANFILES_COV = *.css *.gcda *.html .libs/*.gcda
diff --git a/libc3/arg.c b/libc3/arg.c
index 62c62fb..be16d22 100644
--- a/libc3/arg.c
+++ b/libc3/arg.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/arg.h b/libc3/arg.h
index 836d0cc..d0a937c 100644
--- a/libc3/arg.h
+++ b/libc3/arg.h
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/binding.c b/libc3/binding.c
index 84737d8..97911a9 100644
--- a/libc3/binding.c
+++ b/libc3/binding.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/binding.h b/libc3/binding.h
index efa9c9a..f40b035 100644
--- a/libc3/binding.h
+++ b/libc3/binding.h
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/bool.c b/libc3/bool.c
index e17a7dc..f0cbdc7 100644
--- a/libc3/bool.c
+++ b/libc3/bool.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/bool.h b/libc3/bool.h
index db00baa..c4f740c 100644
--- a/libc3/bool.h
+++ b/libc3/bool.h
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/buf.c b/libc3/buf.c
index f02c849..5c139a0 100644
--- a/libc3/buf.c
+++ b/libc3/buf.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/buf.h b/libc3/buf.h
index 0fa3b96..314dbf8 100644
--- a/libc3/buf.h
+++ b/libc3/buf.h
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/buf_file.c b/libc3/buf_file.c
index 587d9e8..dc72ebb 100644
--- a/libc3/buf_file.c
+++ b/libc3/buf_file.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/buf_file.h b/libc3/buf_file.h
index 819c8d4..2f1f1d2 100644
--- a/libc3/buf_file.h
+++ b/libc3/buf_file.h
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/buf_inspect.c b/libc3/buf_inspect.c
index 6505381..cb5031b 100644
--- a/libc3/buf_inspect.c
+++ b/libc3/buf_inspect.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/buf_inspect.h b/libc3/buf_inspect.h
index e915b4b..d2af0e2 100644
--- a/libc3/buf_inspect.h
+++ b/libc3/buf_inspect.h
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/buf_parse.c b/libc3/buf_parse.c
index a08c119..acafd5d 100644
--- a/libc3/buf_parse.c
+++ b/libc3/buf_parse.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/buf_parse.h b/libc3/buf_parse.h
index 376f16b..17e6713 100644
--- a/libc3/buf_parse.h
+++ b/libc3/buf_parse.h
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/buf_parse_c.c b/libc3/buf_parse_c.c
index 7e0b77d..f531611 100644
--- a/libc3/buf_parse_c.c
+++ b/libc3/buf_parse_c.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/buf_parse_c.h b/libc3/buf_parse_c.h
index 1886b4c..6b3b5e6 100644
--- a/libc3/buf_parse_c.h
+++ b/libc3/buf_parse_c.h
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/buf_save.c b/libc3/buf_save.c
index 4ce40b8..602d2fe 100644
--- a/libc3/buf_save.c
+++ b/libc3/buf_save.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/buf_save.h b/libc3/buf_save.h
index 070ab4c..4e0f240 100644
--- a/libc3/buf_save.h
+++ b/libc3/buf_save.h
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/c3.c b/libc3/c3.c
index 640c532..b0d9ff1 100644
--- a/libc3/c3.c
+++ b/libc3/c3.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/c3.h b/libc3/c3.h
index 380d574..e46cb97 100644
--- a/libc3/c3.h
+++ b/libc3/c3.h
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/c_types.h b/libc3/c_types.h
index 307608b..f34944f 100644
--- a/libc3/c_types.h
+++ b/libc3/c_types.h
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/call.c b/libc3/call.c
index 0100db6..26e59ae 100644
--- a/libc3/call.c
+++ b/libc3/call.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/call.h b/libc3/call.h
index 16d4c83..bf388f9 100644
--- a/libc3/call.h
+++ b/libc3/call.h
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/character.c b/libc3/character.c
index 55584ca..d6a260f 100644
--- a/libc3/character.c
+++ b/libc3/character.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/character.h b/libc3/character.h
index db9ed19..7b2b4e5 100644
--- a/libc3/character.h
+++ b/libc3/character.h
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/compare.c b/libc3/compare.c
index ec3e150..9312e42 100644
--- a/libc3/compare.c
+++ b/libc3/compare.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/compare.h b/libc3/compare.h
index 07774dd..527cc77 100644
--- a/libc3/compare.h
+++ b/libc3/compare.h
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/configure b/libc3/configure
index 0f97939..009c346 100755
--- a/libc3/configure
+++ b/libc3/configure
@@ -1,6 +1,6 @@
 #!/bin/sh
 ## c3
-## Copyright 2022 kmx.io <contact@kmx.io>
+## Copyright 2022,2023 kmx.io <contact@kmx.io>
 ##
 ## Permission is hereby granted to use this software excepted
 ## on Apple computers granted the above copyright notice and
@@ -11,6 +11,7 @@
 ## PURPOSE AND PERFORMANCE. IN NO EVENT WHATSOEVER SHALL THE
 ## AUTHOR BE CONSIDERED LIABLE FOR THE USE AND PERFORMANCE OF
 ## THIS SOFTWARE.
+
 set -e
 
 export SRC_TOP="$(dirname "$PWD")"
diff --git a/libc3/debug.c b/libc3/debug.c
index a5a43d0..ec5b425 100644
--- a/libc3/debug.c
+++ b/libc3/debug.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/debug.h b/libc3/debug.h
index cd764d4..39e1ce1 100644
--- a/libc3/debug.h
+++ b/libc3/debug.h
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/env.c b/libc3/env.c
index ba90437..d42b477 100644
--- a/libc3/env.c
+++ b/libc3/env.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/env.h b/libc3/env.h
index 6458e99..309ed72 100644
--- a/libc3/env.h
+++ b/libc3/env.h
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/error.c b/libc3/error.c
index 51c8ef4..fbb6ea0 100644
--- a/libc3/error.c
+++ b/libc3/error.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/error.h b/libc3/error.h
index 7edf426..080ee07 100644
--- a/libc3/error.h
+++ b/libc3/error.h
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/error_handler.c b/libc3/error_handler.c
index 50885a1..aae9345 100644
--- a/libc3/error_handler.c
+++ b/libc3/error_handler.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/error_handler.h b/libc3/error_handler.h
index f608d96..967aa2a 100644
--- a/libc3/error_handler.h
+++ b/libc3/error_handler.h
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/eval.c b/libc3/eval.c
index 4a9a095..5a3696a 100644
--- a/libc3/eval.c
+++ b/libc3/eval.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/eval.h b/libc3/eval.h
index 819b3e7..27267b0 100644
--- a/libc3/eval.h
+++ b/libc3/eval.h
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/fact.c b/libc3/fact.c
index ede4bd4..de3dce6 100644
--- a/libc3/fact.c
+++ b/libc3/fact.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/fact.h b/libc3/fact.h
index f965319..95a736c 100644
--- a/libc3/fact.h
+++ b/libc3/fact.h
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/facts.c b/libc3/facts.c
index 531f845..fc34cf5 100644
--- a/libc3/facts.c
+++ b/libc3/facts.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/facts.h b/libc3/facts.h
index 6451a7d..b253245 100644
--- a/libc3/facts.h
+++ b/libc3/facts.h
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/facts_cursor.c b/libc3/facts_cursor.c
index 6d0f240..595674b 100644
--- a/libc3/facts_cursor.c
+++ b/libc3/facts_cursor.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/facts_cursor.h b/libc3/facts_cursor.h
index 3e072b3..fd04c9d 100644
--- a/libc3/facts_cursor.h
+++ b/libc3/facts_cursor.h
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/facts_spec.c b/libc3/facts_spec.c
index 4d1d15c..3f1807a 100644
--- a/libc3/facts_spec.c
+++ b/libc3/facts_spec.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/facts_spec.h b/libc3/facts_spec.h
index 2010f3b..ee5579b 100644
--- a/libc3/facts_spec.h
+++ b/libc3/facts_spec.h
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/facts_spec_cursor.c b/libc3/facts_spec_cursor.c
index 940c1da..fb24d76 100644
--- a/libc3/facts_spec_cursor.c
+++ b/libc3/facts_spec_cursor.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/facts_spec_cursor.h b/libc3/facts_spec_cursor.h
index 647093d..5e593f2 100644
--- a/libc3/facts_spec_cursor.h
+++ b/libc3/facts_spec_cursor.h
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/facts_with.c b/libc3/facts_with.c
index b964a03..8d79a9c 100644
--- a/libc3/facts_with.c
+++ b/libc3/facts_with.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/facts_with.h b/libc3/facts_with.h
index 8c32ae4..4283d4f 100644
--- a/libc3/facts_with.h
+++ b/libc3/facts_with.h
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/facts_with_cursor.c b/libc3/facts_with_cursor.c
index 4eec26d..34ec4cb 100644
--- a/libc3/facts_with_cursor.c
+++ b/libc3/facts_with_cursor.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/facts_with_cursor.h b/libc3/facts_with_cursor.h
index dd9f6f5..1fd0834 100644
--- a/libc3/facts_with_cursor.h
+++ b/libc3/facts_with_cursor.h
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/fn.c b/libc3/fn.c
index 61277d0..9a6904e 100644
--- a/libc3/fn.c
+++ b/libc3/fn.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/fn.h b/libc3/fn.h
index eada15f..e72a986 100644
--- a/libc3/fn.h
+++ b/libc3/fn.h
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/frame.c b/libc3/frame.c
index 932647d..ca2bac3 100644
--- a/libc3/frame.c
+++ b/libc3/frame.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/frame.h b/libc3/frame.h
index 776f920..6cd6122 100644
--- a/libc3/frame.h
+++ b/libc3/frame.h
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/hash.c b/libc3/hash.c
index 4006587..d44d6f2 100644
--- a/libc3/hash.c
+++ b/libc3/hash.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/hash.h b/libc3/hash.h
index 8d3dce8..37aa23e 100644
--- a/libc3/hash.h
+++ b/libc3/hash.h
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/ident.c b/libc3/ident.c
index 6936d73..5939b84 100644
--- a/libc3/ident.c
+++ b/libc3/ident.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/ident.h b/libc3/ident.h
index 1b1c659..6c40acd 100644
--- a/libc3/ident.h
+++ b/libc3/ident.h
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/integer.c b/libc3/integer.c
index cc65fd1..3184cef 100644
--- a/libc3/integer.c
+++ b/libc3/integer.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/integer.h b/libc3/integer.h
index 2602ab1..22db889 100644
--- a/libc3/integer.h
+++ b/libc3/integer.h
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/list.c b/libc3/list.c
index 8aeaaa7..460daef 100644
--- a/libc3/list.c
+++ b/libc3/list.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/list.h b/libc3/list.h
index 097b650..c104b4d 100644
--- a/libc3/list.h
+++ b/libc3/list.h
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/log.c b/libc3/log.c
index e6517ed..7dabd22 100644
--- a/libc3/log.c
+++ b/libc3/log.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/log.h b/libc3/log.h
index 905044d..137a13e 100644
--- a/libc3/log.h
+++ b/libc3/log.h
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/module.h b/libc3/module.h
index 13b4e04..4ede9d5 100644
--- a/libc3/module.h
+++ b/libc3/module.h
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/quote.c b/libc3/quote.c
index 7da20e9..44e2f2d 100644
--- a/libc3/quote.c
+++ b/libc3/quote.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/quote.h b/libc3/quote.h
index c1cb71b..c3211ac 100644
--- a/libc3/quote.h
+++ b/libc3/quote.h
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/set.c.in b/libc3/set.c.in
index c609aef..f92c092 100644
--- a/libc3/set.c.in
+++ b/libc3/set.c.in
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/set.h.in b/libc3/set.h.in
index 3e31aee..bd4b4af 100644
--- a/libc3/set.h.in
+++ b/libc3/set.h.in
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/set__fact.c b/libc3/set__fact.c
index 4b5b9e8..1bc76ba 100644
--- a/libc3/set__fact.c
+++ b/libc3/set__fact.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/set__fact.h b/libc3/set__fact.h
index 03d2eae..5124bd5 100644
--- a/libc3/set__fact.h
+++ b/libc3/set__fact.h
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/set__tag.c b/libc3/set__tag.c
index ca8dba1..0e00113 100644
--- a/libc3/set__tag.c
+++ b/libc3/set__tag.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/set__tag.h b/libc3/set__tag.h
index c003a86..d5fe3e4 100644
--- a/libc3/set__tag.h
+++ b/libc3/set__tag.h
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/set_cursor.c.in b/libc3/set_cursor.c.in
index 46da443..911f303 100644
--- a/libc3/set_cursor.c.in
+++ b/libc3/set_cursor.c.in
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/set_cursor.h.in b/libc3/set_cursor.h.in
index 90e03d0..253c2cb 100644
--- a/libc3/set_cursor.h.in
+++ b/libc3/set_cursor.h.in
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/set_cursor__fact.c b/libc3/set_cursor__fact.c
index 3c3aee1..58c2c73 100644
--- a/libc3/set_cursor__fact.c
+++ b/libc3/set_cursor__fact.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/set_cursor__fact.h b/libc3/set_cursor__fact.h
index 8fce6f0..db82731 100644
--- a/libc3/set_cursor__fact.h
+++ b/libc3/set_cursor__fact.h
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/set_cursor__tag.c b/libc3/set_cursor__tag.c
index 2190731..cc04e96 100644
--- a/libc3/set_cursor__tag.c
+++ b/libc3/set_cursor__tag.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/set_cursor__tag.h b/libc3/set_cursor__tag.h
index 2cd2dcc..0cf6fa2 100644
--- a/libc3/set_cursor__tag.h
+++ b/libc3/set_cursor__tag.h
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/set_item.c.in b/libc3/set_item.c.in
index d1bbabf..226b575 100644
--- a/libc3/set_item.c.in
+++ b/libc3/set_item.c.in
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/set_item.h.in b/libc3/set_item.h.in
index eb040c3..c300879 100644
--- a/libc3/set_item.h.in
+++ b/libc3/set_item.h.in
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/set_item__fact.c b/libc3/set_item__fact.c
index d6cae64..ed0d70b 100644
--- a/libc3/set_item__fact.c
+++ b/libc3/set_item__fact.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/set_item__fact.h b/libc3/set_item__fact.h
index 7af4b91..b1ee072 100644
--- a/libc3/set_item__fact.h
+++ b/libc3/set_item__fact.h
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/set_item__tag.c b/libc3/set_item__tag.c
index bfceb83..712042d 100644
--- a/libc3/set_item__tag.c
+++ b/libc3/set_item__tag.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/set_item__tag.h b/libc3/set_item__tag.h
index ec186be..b616b02 100644
--- a/libc3/set_item__tag.h
+++ b/libc3/set_item__tag.h
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/skiplist.c.in b/libc3/skiplist.c.in
index 7038e05..efc34c0 100644
--- a/libc3/skiplist.c.in
+++ b/libc3/skiplist.c.in
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/skiplist.h.in b/libc3/skiplist.h.in
index 0bf4676..6d9d85b 100644
--- a/libc3/skiplist.h.in
+++ b/libc3/skiplist.h.in
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/skiplist__fact.c b/libc3/skiplist__fact.c
index 34e57ea..e8bc84a 100644
--- a/libc3/skiplist__fact.c
+++ b/libc3/skiplist__fact.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/skiplist__fact.h b/libc3/skiplist__fact.h
index b2961f0..b275df4 100644
--- a/libc3/skiplist__fact.h
+++ b/libc3/skiplist__fact.h
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/skiplist_node.c.in b/libc3/skiplist_node.c.in
index bd6d937..a5290c4 100644
--- a/libc3/skiplist_node.c.in
+++ b/libc3/skiplist_node.c.in
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/skiplist_node.h.in b/libc3/skiplist_node.h.in
index 4d5d4ee..02d7124 100644
--- a/libc3/skiplist_node.h.in
+++ b/libc3/skiplist_node.h.in
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/skiplist_node__fact.c b/libc3/skiplist_node__fact.c
index 065dcf5..7c316a3 100644
--- a/libc3/skiplist_node__fact.c
+++ b/libc3/skiplist_node__fact.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/skiplist_node__fact.h b/libc3/skiplist_node__fact.h
index ea64f5c..9ee8d82 100644
--- a/libc3/skiplist_node__fact.h
+++ b/libc3/skiplist_node__fact.h
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/str.c b/libc3/str.c
index cbdad35..a81de3c 100644
--- a/libc3/str.c
+++ b/libc3/str.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/str.h b/libc3/str.h
index 27133a3..7f12b76 100644
--- a/libc3/str.h
+++ b/libc3/str.h
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/sym.c b/libc3/sym.c
index 5b42998..900302a 100644
--- a/libc3/sym.c
+++ b/libc3/sym.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/sym.h b/libc3/sym.h
index a3a0466..43f9adf 100644
--- a/libc3/sym.h
+++ b/libc3/sym.h
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/tag.c b/libc3/tag.c
index 5be1c28..1fcc848 100644
--- a/libc3/tag.c
+++ b/libc3/tag.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/tag.h b/libc3/tag.h
index facef48..3be4811 100644
--- a/libc3/tag.h
+++ b/libc3/tag.h
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/tuple.c b/libc3/tuple.c
index 13a13cd..cc25132 100644
--- a/libc3/tuple.c
+++ b/libc3/tuple.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/tuple.h b/libc3/tuple.h
index 8ce3393..8ef075d 100644
--- a/libc3/tuple.h
+++ b/libc3/tuple.h
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/types.h b/libc3/types.h
index 3f4856d..756682c 100644
--- a/libc3/types.h
+++ b/libc3/types.h
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/libc3/ucd.c b/libc3/ucd.c
index 70c9cd2..0aa5650 100644
--- a/libc3/ucd.c
+++ b/libc3/ucd.c
@@ -1 +1,14 @@
+/* c3
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
+ *
+ * Permission is hereby granted to use this software excepted
+ * on Apple computers granted the above copyright notice and
+ * this permission paragraph are included in all copies and
+ * substantial portions of this software.
+ *
+ * THIS SOFTWARE IS PROVIDED "AS-IS" WITHOUT ANY GUARANTEE OF
+ * PURPOSE AND PERFORMANCE. IN NO EVENT WHATSOEVER SHALL THE
+ * AUTHOR BE CONSIDERED LIABLE FOR THE USE AND PERFORMANCE OF
+ * THIS SOFTWARE.
+ */
 #include "../ucd2c/ucd.c"
diff --git a/libc3/ucd.h b/libc3/ucd.h
index 8f32db4..4d78c06 100644
--- a/libc3/ucd.h
+++ b/libc3/ucd.h
@@ -1 +1,14 @@
+/* c3
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
+ *
+ * Permission is hereby granted to use this software excepted
+ * on Apple computers granted the above copyright notice and
+ * this permission paragraph are included in all copies and
+ * substantial portions of this software.
+ *
+ * THIS SOFTWARE IS PROVIDED "AS-IS" WITHOUT ANY GUARANTEE OF
+ * PURPOSE AND PERFORMANCE. IN NO EVENT WHATSOEVER SHALL THE
+ * AUTHOR BE CONSIDERED LIABLE FOR THE USE AND PERFORMANCE OF
+ * THIS SOFTWARE.
+ */
 #include "../ucd2c/ucd.h"
diff --git a/libc3/update_sources b/libc3/update_sources
index 5d6c467..acde260 100755
--- a/libc3/update_sources
+++ b/libc3/update_sources
@@ -1,4 +1,16 @@
 #!/bin/sh
+## c3
+## Copyright 2022,2023 kmx.io <contact@kmx.io>
+##
+## Permission is hereby granted to use this software excepted
+## on Apple computers granted the above copyright notice and
+## this permission paragraph are included in all copies and
+## substantial portions of this software.
+##
+## THIS SOFTWARE IS PROVIDED "AS-IS" WITHOUT ANY GUARANTEE OF
+## PURPOSE AND PERFORMANCE. IN NO EVENT WHATSOEVER SHALL THE
+## AUTHOR BE CONSIDERED LIABLE FOR THE USE AND PERFORMANCE OF
+## THIS SOFTWARE.
 
 . ../config.subr
 
diff --git a/libtommath b/libtommath
index ce33fd7..adec729 160000
--- a/libtommath
+++ b/libtommath
@@ -1 +1 @@
-Subproject commit ce33fd708565f1538878e9756746beb15012411f
+Subproject commit adec729ef17813d5152b5ab550e3ac3b19208303
diff --git a/sources.mk b/sources.mk
new file mode 100644
index 0000000..17cf555
--- /dev/null
+++ b/sources.mk
@@ -0,0 +1,4 @@
+# sources.mk generated by update_sources
+C3_CONFIGURES = c3c/configure c3s/configure c3s/update_sources ic3/configure ic3/update_sources libc3/configure libc3/update_sources test/configure test/update_sources ucd2c/configure  libtommath/configure
+C3_MAKEFILES = c3c/Makefile c3s/Makefile ic3/Makefile libc3/Makefile test/Makefile ucd2c/Makefile  libtommath/Makefile
+C3_C_SOURCES = c3c/c3c.c c3s/buf_readline.c c3s/c3s.c c3s/buf_readline.h ic3/buf_linenoise.c ic3/buf_linenoise.h ic3/ic3.c ic3/linenoise.c libc3/arg.c libc3/arg.h libc3/binding.c libc3/binding.h libc3/bool.c libc3/bool.h libc3/buf.c libc3/buf.h libc3/buf_file.c libc3/buf_file.h libc3/buf_inspect.c libc3/buf_inspect.h libc3/buf_parse.c libc3/buf_parse.h libc3/buf_parse_c.c libc3/buf_parse_c.h libc3/buf_save.c libc3/log.h libc3/compare.c libc3/compare.h libc3/buf_save.h libc3/c3.c libc3/c3.h libc3/c_types.h libc3/call.c libc3/call.h libc3/character.c libc3/debug.c libc3/debug.h libc3/env.c libc3/env.h libc3/log.c libc3/error.c libc3/error.h libc3/error_handler.c libc3/error_handler.h libc3/eval.c libc3/eval.h libc3/fact.h libc3/set__fact.c libc3/set__fact.h libc3/set__tag.c libc3/set__tag.h libc3/set_cursor__fact.c libc3/set_cursor__fact.h libc3/set_cursor__tag.c libc3/set_cursor__tag.h libc3/set_item__fact.c libc3/set_item__fact.h libc3/set_item__tag.c libc3/set_item__tag.h libc3/facts.c libc3/facts.h libc3/facts_cursor.c libc3/facts_cursor.h libc3/facts_spec.c libc3/facts_spec.h libc3/facts_spec_cursor.c libc3/facts_spec_cursor.h libc3/character.h libc3/facts_with.c libc3/facts_with.h libc3/facts_with_cursor.c libc3/facts_with_cursor.h libc3/fn.c libc3/fn.h libc3/frame.c libc3/frame.h libc3/hash.c libc3/hash.h libc3/ident.c libc3/ident.h libc3/skiplist__fact.c libc3/skiplist__fact.h libc3/skiplist_node__fact.c libc3/skiplist_node__fact.h libc3/integer.c libc3/integer.h libc3/list.c libc3/list.h libc3/module.h libc3/quote.c libc3/quote.h libc3/types.h libc3/set.c.in libc3/set.h.in libc3/set_cursor.c.in libc3/set_cursor.h.in libc3/str.c libc3/set_item.c.in libc3/set_item.h.in libc3/fact.c libc3/skiplist.c.in libc3/skiplist.h.in libc3/skiplist_node.c.in libc3/skiplist_node.h.in libc3/str.h libc3/sym.c libc3/sym.h libc3/tag.c libc3/tuple.c libc3/tuple.h libc3/ucd.c libc3/ucd.h libc3/tag.h test/bool_test.c test/buf_file_test.c test/buf_inspect_test.c test/buf_parse_test.c test/buf_test.c test/call_test.c test/character_test.c test/hash_test.c test/fact_test.c test/fact_test.h test/facts_cursor_test.c test/facts_test.c test/facts_with_test.c test/ident_test.c test/libc3_test.c test/tuple_test.c test/list_test.c test/set__fact_test.c test/set__tag_test.c test/compare_test.h test/skiplist__fact_test.c test/str_test.c test/sym_test.c test/tag_test.c test/tag_test.h test/test.c test/test.h test/types_test.c test/compare_test.c  ucd2c/ucd.h ucd2c/ucd2c.c
diff --git a/sources.sh b/sources.sh
new file mode 100644
index 0000000..f6f6941
--- /dev/null
+++ b/sources.sh
@@ -0,0 +1,4 @@
+# sources.sh generated by update_sources
+C3_CONFIGURES='c3c/configure c3s/configure c3s/update_sources ic3/configure ic3/update_sources libc3/configure libc3/update_sources test/configure test/update_sources ucd2c/configure  libtommath/configure'
+C3_MAKEFILES='c3c/Makefile c3s/Makefile ic3/Makefile libc3/Makefile test/Makefile ucd2c/Makefile  libtommath/Makefile'
+C3_C_SOURCES='c3c/c3c.c c3s/buf_readline.c c3s/c3s.c c3s/buf_readline.h ic3/buf_linenoise.c ic3/buf_linenoise.h ic3/ic3.c ic3/linenoise.c libc3/arg.c libc3/arg.h libc3/binding.c libc3/binding.h libc3/bool.c libc3/bool.h libc3/buf.c libc3/buf.h libc3/buf_file.c libc3/buf_file.h libc3/buf_inspect.c libc3/buf_inspect.h libc3/buf_parse.c libc3/buf_parse.h libc3/buf_parse_c.c libc3/buf_parse_c.h libc3/buf_save.c libc3/log.h libc3/compare.c libc3/compare.h libc3/buf_save.h libc3/c3.c libc3/c3.h libc3/c_types.h libc3/call.c libc3/call.h libc3/character.c libc3/debug.c libc3/debug.h libc3/env.c libc3/env.h libc3/log.c libc3/error.c libc3/error.h libc3/error_handler.c libc3/error_handler.h libc3/eval.c libc3/eval.h libc3/fact.h libc3/set__fact.c libc3/set__fact.h libc3/set__tag.c libc3/set__tag.h libc3/set_cursor__fact.c libc3/set_cursor__fact.h libc3/set_cursor__tag.c libc3/set_cursor__tag.h libc3/set_item__fact.c libc3/set_item__fact.h libc3/set_item__tag.c libc3/set_item__tag.h libc3/facts.c libc3/facts.h libc3/facts_cursor.c libc3/facts_cursor.h libc3/facts_spec.c libc3/facts_spec.h libc3/facts_spec_cursor.c libc3/facts_spec_cursor.h libc3/character.h libc3/facts_with.c libc3/facts_with.h libc3/facts_with_cursor.c libc3/facts_with_cursor.h libc3/fn.c libc3/fn.h libc3/frame.c libc3/frame.h libc3/hash.c libc3/hash.h libc3/ident.c libc3/ident.h libc3/skiplist__fact.c libc3/skiplist__fact.h libc3/skiplist_node__fact.c libc3/skiplist_node__fact.h libc3/integer.c libc3/integer.h libc3/list.c libc3/list.h libc3/module.h libc3/quote.c libc3/quote.h libc3/types.h libc3/set.c.in libc3/set.h.in libc3/set_cursor.c.in libc3/set_cursor.h.in libc3/str.c libc3/set_item.c.in libc3/set_item.h.in libc3/fact.c libc3/skiplist.c.in libc3/skiplist.h.in libc3/skiplist_node.c.in libc3/skiplist_node.h.in libc3/str.h libc3/sym.c libc3/sym.h libc3/tag.c libc3/tuple.c libc3/tuple.h libc3/ucd.c libc3/ucd.h libc3/tag.h test/bool_test.c test/buf_file_test.c test/buf_inspect_test.c test/buf_parse_test.c test/buf_test.c test/call_test.c test/character_test.c test/hash_test.c test/fact_test.c test/fact_test.h test/facts_cursor_test.c test/facts_test.c test/facts_with_test.c test/ident_test.c test/libc3_test.c test/tuple_test.c test/list_test.c test/set__fact_test.c test/set__tag_test.c test/compare_test.h test/skiplist__fact_test.c test/str_test.c test/sym_test.c test/tag_test.c test/tag_test.h test/test.c test/test.h test/types_test.c test/compare_test.c  ucd2c/ucd.h ucd2c/ucd2c.c'
diff --git a/test/Makefile b/test/Makefile
index cd4fa8d..7eb2bce 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -1,5 +1,5 @@
 ## c3
-## Copyright 2022 kmx.io <contact@kmx.io>
+## Copyright 2022,2023 kmx.io <contact@kmx.io>
 ##
 ## Permission is hereby granted to use this software excepted
 ## on Apple computers granted the above copyright notice and
diff --git a/test/bool_test.c b/test/bool_test.c
index ff7be1d..b39d977 100644
--- a/test/bool_test.c
+++ b/test/bool_test.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/test/buf_file_test.c b/test/buf_file_test.c
index 73facbe..29ba740 100644
--- a/test/buf_file_test.c
+++ b/test/buf_file_test.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/test/buf_inspect_test.c b/test/buf_inspect_test.c
index ad4c4a3..392c5ab 100644
--- a/test/buf_inspect_test.c
+++ b/test/buf_inspect_test.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/test/buf_parse_test.c b/test/buf_parse_test.c
index b1bccf3..a0cc2e1 100644
--- a/test/buf_parse_test.c
+++ b/test/buf_parse_test.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/test/buf_test.c b/test/buf_test.c
index c549335..bbc4cce 100644
--- a/test/buf_test.c
+++ b/test/buf_test.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/test/call_test.c b/test/call_test.c
index ea540c4..ffdd656 100644
--- a/test/call_test.c
+++ b/test/call_test.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/test/character_test.c b/test/character_test.c
index 2a0e199..bc7e591 100644
--- a/test/character_test.c
+++ b/test/character_test.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/test/compare_test.c b/test/compare_test.c
index 7158c1d..c23ebbd 100644
--- a/test/compare_test.c
+++ b/test/compare_test.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/test/compare_test.h b/test/compare_test.h
index 3f68416..db63c0d 100644
--- a/test/compare_test.h
+++ b/test/compare_test.h
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/test/configure b/test/configure
index acccef6..cc2a1a8 100755
--- a/test/configure
+++ b/test/configure
@@ -1,6 +1,6 @@
 #!/bin/sh
 ## c3
-## Copyright 2022 kmx.io <contact@kmx.io>
+## Copyright 2022,2023 kmx.io <contact@kmx.io>
 ##
 ## Permission is hereby granted to use this software excepted
 ## on Apple computers granted the above copyright notice and
diff --git a/test/fact_test.c b/test/fact_test.c
index da6228d..0a0f2df 100644
--- a/test/fact_test.c
+++ b/test/fact_test.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/test/fact_test.h b/test/fact_test.h
index 92cfe5a..c980456 100644
--- a/test/fact_test.h
+++ b/test/fact_test.h
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/test/facts_cursor_test.c b/test/facts_cursor_test.c
index cbf1607..d314b14 100644
--- a/test/facts_cursor_test.c
+++ b/test/facts_cursor_test.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/test/facts_test.c b/test/facts_test.c
index eab6b15..0759288 100644
--- a/test/facts_test.c
+++ b/test/facts_test.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/test/facts_with_test.c b/test/facts_with_test.c
index 61708b6..abcdcf3 100644
--- a/test/facts_with_test.c
+++ b/test/facts_with_test.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/test/hash_test.c b/test/hash_test.c
index 8bb6d59..87f4d18 100644
--- a/test/hash_test.c
+++ b/test/hash_test.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/test/ident_test.c b/test/ident_test.c
index bc311d1..4e858ea 100644
--- a/test/ident_test.c
+++ b/test/ident_test.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/test/libc3_test.c b/test/libc3_test.c
index 03ee95e..05199f9 100644
--- a/test/libc3_test.c
+++ b/test/libc3_test.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/test/list_test.c b/test/list_test.c
index 4a8a827..b16f4b9 100644
--- a/test/list_test.c
+++ b/test/list_test.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/test/set__fact_test.c b/test/set__fact_test.c
index c0556f4..cfa04e9 100644
--- a/test/set__fact_test.c
+++ b/test/set__fact_test.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/test/set__tag_test.c b/test/set__tag_test.c
index 469ae1a..743ab2f 100644
--- a/test/set__tag_test.c
+++ b/test/set__tag_test.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/test/skiplist__fact_test.c b/test/skiplist__fact_test.c
index a47568a..b2829d0 100644
--- a/test/skiplist__fact_test.c
+++ b/test/skiplist__fact_test.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/test/str_test.c b/test/str_test.c
index f8fcb6a..781a62d 100644
--- a/test/str_test.c
+++ b/test/str_test.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/test/sym_test.c b/test/sym_test.c
index 67aeadd..8531034 100644
--- a/test/sym_test.c
+++ b/test/sym_test.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/test/tag_test.c b/test/tag_test.c
index 0ac0e00..626917b 100644
--- a/test/tag_test.c
+++ b/test/tag_test.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/test/tag_test.h b/test/tag_test.h
index 110a4c8..6be3f74 100644
--- a/test/tag_test.h
+++ b/test/tag_test.h
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/test/test.c b/test/test.c
index 46f079e..987ad72 100644
--- a/test/test.c
+++ b/test/test.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/test/test.h b/test/test.h
index 0cd41d3..2b3e151 100644
--- a/test/test.h
+++ b/test/test.h
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/test/tuple_test.c b/test/tuple_test.c
index 2c3f397..0d8e08e 100644
--- a/test/tuple_test.c
+++ b/test/tuple_test.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/test/types_test.c b/test/types_test.c
index 18cbbdc..28b30d4 100644
--- a/test/types_test.c
+++ b/test/types_test.c
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/test/update_sources b/test/update_sources
index bfecdd7..74c1c03 100755
--- a/test/update_sources
+++ b/test/update_sources
@@ -1,4 +1,16 @@
 #!/bin/sh
+## c3
+## Copyright 2022,2023 kmx.io <contact@kmx.io>
+##
+## Permission is hereby granted to use this software excepted
+## on Apple computers granted the above copyright notice and
+## this permission paragraph are included in all copies and
+## substantial portions of this software.
+##
+## THIS SOFTWARE IS PROVIDED "AS-IS" WITHOUT ANY GUARANTEE OF
+## PURPOSE AND PERFORMANCE. IN NO EVENT WHATSOEVER SHALL THE
+## AUTHOR BE CONSIDERED LIABLE FOR THE USE AND PERFORMANCE OF
+## THIS SOFTWARE.
 
 . ../config.subr
 
diff --git a/ucd2c/Makefile b/ucd2c/Makefile
index 478a384..33a8558 100644
--- a/ucd2c/Makefile
+++ b/ucd2c/Makefile
@@ -1,5 +1,5 @@
 ## c3
-## Copyright 2022 kmx.io <contact@kmx.io>
+## Copyright 2022,2023 kmx.io <contact@kmx.io>
 ##
 ## Permission is hereby granted to use this software excepted
 ## on Apple computers granted the above copyright notice and
diff --git a/ucd2c/configure b/ucd2c/configure
index 3806408..3eeb289 100755
--- a/ucd2c/configure
+++ b/ucd2c/configure
@@ -1,6 +1,6 @@
 #!/bin/sh
 ## c3
-## Copyright 2022 kmx.io <contact@kmx.io>
+## Copyright 2022,2023 kmx.io <contact@kmx.io>
 ##
 ## Permission is hereby granted to use this software excepted
 ## on Apple computers granted the above copyright notice and
diff --git a/ucd2c/ucd.h b/ucd2c/ucd.h
index f610183..7354e5a 100644
--- a/ucd2c/ucd.h
+++ b/ucd2c/ucd.h
@@ -1,5 +1,5 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
  * Permission is hereby granted to use this software excepted
  * on Apple computers granted the above copyright notice and
diff --git a/ucd2c/ucd2c.c b/ucd2c/ucd2c.c
index 95e50d4..55d65d1 100644
--- a/ucd2c/ucd2c.c
+++ b/ucd2c/ucd2c.c
@@ -1,10 +1,10 @@
 /* c3
- * Copyright 2022 kmx.io <contact@kmx.io>
+ * Copyright 2022,2023 kmx.io <contact@kmx.io>
  *
- * Permission is hereby granted to use this software granted
- * the above copyright notice and this permission paragraph
- * are included in all copies and substantial portions of this
- * software.
+ * Permission is hereby granted to use this software excepted
+ * on Apple computers granted the above copyright notice and
+ * this permission paragraph are included in all copies and
+ * substantial portions of this software.
  *
  * THIS SOFTWARE IS PROVIDED "AS-IS" WITHOUT ANY GUARANTEE OF
  * PURPOSE AND PERFORMANCE. IN NO EVENT WHATSOEVER SHALL THE
diff --git a/update_sources b/update_sources
index c7d895e..2d89299 100755
--- a/update_sources
+++ b/update_sources
@@ -1,5 +1,32 @@
 #!/bin/sh
 set -e
+
+. ./config.subr
+
+echo "# sources.mk generated by update_sources" > ${SOURCES_MK}
+echo "# sources.sh generated by update_sources" > ${SOURCES_SH}
+
+C3_CONFIGURES="$(find c3c c3s ic3 libc3 test ucd2c -name configure -or -name update_sources)"
+C3_CONFIGURES="$(echo "${C3_CONFIGURES}" | tr '\n' ' ')"
+C3_CONFIGURES="${C3_CONFIGURES} libtommath/configure"
+echo "C3_CONFIGURES = $C3_CONFIGURES" >> ${SOURCES_MK}
+echo "C3_CONFIGURES='$C3_CONFIGURES'" >> ${SOURCES_SH}
+
+C3_MAKEFILES="$(find c3c c3s ic3 libc3 test ucd2c -name Makefile)"
+C3_MAKEFILES="$(echo "${C3_MAKEFILES}" | tr '\n' ' ')"
+C3_MAKEFILES="${C3_MAKEFILES} libtommath/Makefile"
+echo "C3_MAKEFILES = $C3_MAKEFILES" >> ${SOURCES_MK}
+echo "C3_MAKEFILES='$C3_MAKEFILES'" >> ${SOURCES_SH}
+
+C3_C_SOURCES="$(find c3c c3s ic3 libc3 test -name "[a-z]*.c" -or -name "[a-z]*.h" -or -name "[a-z]*.c.in" -or -name "[a-z]*.h.in")"
+C3_C_SOURCES="$(echo "${C3_C_SOURCES}" | tr '\n' ' ')"
+C3_C_SOURCES="$C3_C_SOURCES ucd2c/ucd.h ucd2c/ucd2c.c"
+echo "C3_C_SOURCES = $C3_C_SOURCES" >> ${SOURCES_MK}
+echo "C3_C_SOURCES='$C3_C_SOURCES'" >> ${SOURCES_SH}
+
+update_sources_mk
+update_sources_sh
+
 ( cd libtommath && ./update_sources; )
 ( cd libc3 && ./update_sources; )
 ( cd ic3 && ./update_sources; )