LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   Tranfer code from one computer that uses slackware 10.2 to another (https://www.linuxquestions.org/questions/linux-newbie-8/tranfer-code-from-one-computer-that-uses-slackware-10-2-to-another-528921/)

geom06005 02-14-2007 04:56 AM

Tranfer code from one computer that uses slackware 10.2 to another
 
Hi

iam using slackware 10.2

i have a code that is using certain inclusion archives and i want to transfer this code to another computer(that also uses slackware 10.2) Does anyone know how i can include in the other computer the inclusion archives?


#include <stdio.h>
#include <stdlib.h>
#include <malloc.h>
#include <string.h>
#include <math.h>
#include <errno.h>



Thanks in Advance

colucix 02-14-2007 05:14 AM

If I am not wrong, all the includes you've listed are the standard C includes, so they should be already installed on the new machines along with the C compiler.

geom06005 02-14-2007 05:37 AM

transfer code from one slackware 10.2 machine to another
 
Sorry i forgotten to give you all the inclusion archives that the code uses

#include <stdio.h>
#include <stdlib.h>
#include <malloc.h>
#include <string.h>
#include <errno.h>
#include <dirent.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
#include <fcntl.h>

colucix 02-14-2007 06:37 AM

Yes. They all are standard C includes. Since I never used Slackware (forgive me) I don't know exactly which package provides them. On Fedora Core they are provided by glibc-headers, on OpenSuSE by glibc-devel. Hope this helps!


All times are GMT -5. The time now is 11:06 PM.