| 109 | } |
| 110 | |
| 111 | static int concat_path2(char *dest, const char *src1, const char *src2, const char *src3) |
| 112 | { |
| 113 | return sprintf(dest, "%s/%s%s", src1, src2, src3); |
| 114 | } |
| 115 | |
| 116 | static void memcpy64(void *dst, const void *src, int n) |
| 117 | { |
no test coverage detected