in reply to SOLVED: CORE::stat() doesn't appear to be the same as stat

So, you have three addresses for what ought to be the same function. One of two things is true, either there are three functions or more likely, there are three pointers to the same function. I could be wrong but it seems silly to assume there would be three versions of stat() so my best guess is that you're taking the address of 3 pointers that all point at the same function. Of course, I don't actually know, Larry may very well have good reasons for having 3 versions of stat, all different, just to confuse us monks ;^)
  • Comment on Re: CORE::stat() doesn't appear to be the same as stat

Replies are listed 'Best First'.
Re^2: CORE::stat() doesn't appear to be the same as stat
by haukex (Archbishop) on Sep 11, 2018 at 19:27 UTC
    CODE(0x563599d2b1e0) CODE(0x563599d547d0) CODE(0x563599d547d0)
    either there are three functions or more likely, there are three pointers to the same function.

    Sorry, but if you take a look at the addresses above, you'll see neither is true.

Re^2: CORE::stat() doesn't appear to be the same as stat
by Anonymous Monk on Sep 10, 2018 at 17:13 UTC
    I could be wrong ... Of course, I don't actually know

    gee thanks