summaryrefslogtreecommitdiff
path: root/user
diff options
context:
space:
mode:
authorTanguy LE CARROUR <tanguy@bioneland.org>2012-02-07 14:16:10 +0100
committerTanguy LE CARROUR <tanguy@bioneland.org>2012-02-07 14:16:10 +0100
commit70e826e09b736dd1549cf670e03e53c858285d6f (patch)
treee412b8b1e3746522f9c0ba20d005e80ee8275bdd /user
parent305c417a175dd99608bdf0b8bb34b3031979dbfc (diff)
Modify a title.
Diffstat (limited to 'user')
-rw-r--r--user/tlecarrour/porting_guide_for_dummies.mdwn2
1 files changed, 1 insertions, 1 deletions
diff --git a/user/tlecarrour/porting_guide_for_dummies.mdwn b/user/tlecarrour/porting_guide_for_dummies.mdwn
index 176db195..64f0ba0d 100644
--- a/user/tlecarrour/porting_guide_for_dummies.mdwn
+++ b/user/tlecarrour/porting_guide_for_dummies.mdwn
@@ -202,7 +202,7 @@ Call readlink(), check return value and set the null char in the linkname:
linkname[sb.st_size] = '\0';
-### Alternative use of readlink()
+### Alternative use of readlink(): readlink_malloc()
In some cases the above approch doesn't work.for instance when reading from
**/proc/*/exe** on Linux. In this case you can try the following function.