Loading
rs: fix build with gcc14
- add `-DNEED_STRTONUM` flag to include declaration of `strtonum`
from `rs.h`:
```
#ifdef NEED_STRTONUM
/* .linked/strtonum.c */
extern long long strtonum(const char *, long long, long long, const char **);
#endif
```
Fixes `implicit-function-declaration` error with gcc 14:
```
rs.c: In function 'getargs':
rs.c:410:34: error: implicit declaration of function 'strtonum';
did you mean 'strtouq'? []
410 | owidth = strtonum(optarg, 1, INT_MAX, &errstr);
| ^~~~~~~~
| strtouq
```