cbuchner1 / CudaMiner

a CUDA accelerated litecoin mining application based on pooler's CPU miner
Other
692 stars 304 forks source link

malloc.h is on sys/malloc.h on MAC OS #56

Open cleberps opened 10 years ago

balr0g commented 10 years ago

You're better off using stdlib.h rather than malloc.h since malloc.h is deprecated and linux-specific. stdlib.h contains malloc on nearly all platforms.

cleberps commented 10 years ago

I didn't know. Thank you for your note.