This required moving files around in the repository and shifting from a master.adoc structure to _topic_map.yml, etc. README and Makefile modified slightly to reflect new build process
10 lines
123 B
Text
10 lines
123 B
Text
|
|
unsigned
|
|
mul(unsigned a, unsigned b)
|
|
{
|
|
if (b && a > ((unsigned)-1) / b) {
|
|
report_overflow();
|
|
}
|
|
return a * b;
|
|
}
|
|
|