[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Problem using external functions with the same name as those in Gambas


Hello,

I noticed that, for example, this statement:

    Library "libc:6"

    Private Extern kill_C(pid AS Integer, sig AS Integer) As Integer Exec "kill"

gives the error:  "Unexpected Exec"

It didn't give an error before (I don't know when this started happening).


In fact, now ONLY this statement is accepted:

    Private Extern kill_C(pid AS Integer, sig AS Integer) As Integer In "libc:6" Exec "kill"

Is this a deliberate change in Gambas ?

Regards
vuott