Home | History | Annotate | Download | only in iperb

Lines Matching defs:fp

44 	int fp;
54 fp = open(F_name, O_RDWR | O_CREAT | O_TRUNC, 0777);
55 if (!fp) {
57 close(fp);
61 write(fp, &tabR[i], sizeof(double));
64 close(fp);
74 int fp;
84 fp = open(F_name, O_RDWR | O_CREAT | O_TRUNC, 0777);
85 if (!fp) {
87 close(fp);
91 write(fp, &tabD[i], sizeof(double));
93 close(fp);