gregrahn / tpcds-kit

TPC-DS benchmark kit with some modifications/fixes
320 stars 205 forks source link

fix: Add explicit arg typing across `tools/*`. #61

Open jfgrea27 opened 6 months ago

jfgrea27 commented 6 months ago

fix: Add explicit arg typing across tools/*.

Context

Some of the arguments in the functions located in tool/* do not explicitly define their type. This results in a compilation error.

Since the C99 Standard requires explicit typing in function definitions.

Changes

This PR will add typing to the function definitions.