<br><font size=2 face="sans-serif">In clang is it possible to declare C-language
function prototypes for overloaded functions even though it is not C-language
legal. It's because I see that GLSL provides something like this, and I'm
wondering if clang does too and how to express it either through command
line argument or language attributes, etc.?</font>
<br>
<br><font size=2 face="sans-serif">int f(int, int);</font>
<br><font size=2 face="sans-serif">float f(float, float);</font>
<br><font size=2 face="sans-serif">int g() {</font>
<br><font size=2 face="sans-serif">  float x = f(1.0f, 2.0f);</font>
<br><font size=2 face="sans-serif">}</font>
<br><font size=2 face="sans-serif"><br>
Brian Watt, IBM</font>