stdlib.h


Tipo ldiv_t ANSI C

typedef <tipo> ldiv_t;

Un tipo de estructura que es el tipo del valor retornado por la función ldiv.

Ejemplo:

typedef struct {
   long quot;
   long rem;
} ldiv_t;
DJGPP
typedef struct {
   long   quot;
   long   rem;
} ldiv_t;
Borland
typedef struct { long quot, rem; } ldiv_t;
Dev-C++